Files
projectm/vendor/CMakeLists.txt
Kai Blaschke 537add365f Silence CMake warning if projectM-Eval is not found externally.
Also output additional information in both cases (found/not found).
2025-11-04 13:51:37 +01:00

9 lines
187 B
CMake

if(NOT ENABLE_SYSTEM_GLM)
add_subdirectory(glm)
endif()
add_subdirectory(hlslparser)
if(NOT TARGET projectM::Eval)
add_subdirectory(projectm-eval)
endif()
add_subdirectory(SOIL2)