mirror of
https://github.com/sle118/squeezelite-esp32.git
synced 2025-12-09 13:07:03 +03:00
14 lines
324 B
CMake
14 lines
324 B
CMake
# 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
|
|
)
|