9 lines
215 B
CMake
9 lines
215 B
CMake
if (NOT DEFINED ENV{IDF_PATH})
|
|
add_library(components INTERFACE)
|
|
|
|
add_subdirectory(imgui)
|
|
add_subdirectory(insa)
|
|
add_subdirectory(ruth)
|
|
|
|
target_link_libraries(components INTERFACE ImGui)
|
|
endif () |