typhoon/tempest/CMakeLists.txt

19 lines
250 B
Text
Raw Normal View History

2020-11-22 23:25:22 -06:00
file(GLOB TEMPEST_SOURCES
"*.cpp"
"vector/*.cpp"
)
add_library(tempest STATIC
${TEMPEST_SOURCES}
)
target_include_directories(tempest
PUBLIC
${PROJECT_SOURCE_DIR}
)
2020-11-26 08:54:05 -06:00
target_link_libraries(tempest
PRIVATE
storm
)