typhoon/tempest/CMakeLists.txt
2020-11-22 23:27:05 -06:00

13 lines
191 B
CMake

file(GLOB TEMPEST_SOURCES
"*.cpp"
"vector/*.cpp"
)
add_library(tempest STATIC
${TEMPEST_SOURCES}
)
target_include_directories(tempest
PUBLIC
${PROJECT_SOURCE_DIR}
)