From 6606be456b146ea735aaeff8c49a606e117cb79f Mon Sep 17 00:00:00 2001 From: YoungSoo Shin Date: Fri, 26 Sep 2025 10:29:32 +0900 Subject: [PATCH] Move system.c to service dir Signed-off-by: YoungSoo Shin --- main/CMakeLists.txt | 2 +- main/{system => service}/system.c | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename main/{system => service}/system.c (100%) diff --git a/main/CMakeLists.txt b/main/CMakeLists.txt index f87f36b..6807146 100644 --- a/main/CMakeLists.txt +++ b/main/CMakeLists.txt @@ -16,7 +16,7 @@ endif () # Register the component. Now, CMake knows how GZ_OUTPUT_FILE is generated # and can correctly handle the dependency for embedding. -idf_component_register(SRC_DIRS "app" "nconfig" "wifi" "indicator" "system" "service" "proto" +idf_component_register(SRC_DIRS "app" "nconfig" "wifi" "indicator" "service" "proto" INCLUDE_DIRS "include" "proto" EMBED_FILES ${GZ_OUTPUT_FILE} ) diff --git a/main/system/system.c b/main/service/system.c similarity index 100% rename from main/system/system.c rename to main/service/system.c