typhoon/tempest/CMakeLists.txt
2020-11-29 13:19:28 -06:00

19 lines
269 B
CMake

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