backend for Muse

This commit is contained in:
Philippe G
2022-01-19 00:51:35 -08:00
parent de025602ac
commit 533ee5e408
10 changed files with 265 additions and 29 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
)