2nd step of integrating Muse

This commit is contained in:
Philippe G
2022-01-19 00:17:49 -08:00
parent 94fe9b0acf
commit ac7ba228e8
5 changed files with 179 additions and 6 deletions

View File

@@ -0,0 +1,13 @@
# This should be made a pure CMake component but as CMake is even
# more shitty under Windows, backslash in path screws it all
if(CONFIG_MUSE)
message("Compiling for MUSE")
set(src_dirs "muse")
else()
set(src_dirs ".")
endif()
idf_component_register( SRC_DIRS ${src_dirs}
PRIV_REQUIRES services
)