CMakeLists.txt 324 B

12345678910111213
  1. # This should be made a pure CMake component but as CMake is even
  2. # more shitty under Windows, backslash in path screws it all
  3. if(CONFIG_MUSE)
  4. message("Compiling for MUSE")
  5. set(src_dirs "muse")
  6. else()
  7. set(src_dirs ".")
  8. endif()
  9. idf_component_register( SRC_DIRS ${src_dirs}
  10. PRIV_REQUIRES services
  11. )