picrin/contrib/CMakeLists.txt

7 lines
197 B
CMake

set(PICRIN_CONTRIB_DIR ${PROJECT_SOURCE_DIR}/contrib)
file(GLOB CONTRIBS ${PICRIN_CONTRIB_DIR}/*/CMakeLists.txt)
list(SORT CONTRIBS)
foreach(contrib ${CONTRIBS})
include(${contrib})
endforeach()