typhoon/tempest/CMakeLists.txt

22 lines
308 B
Text
Raw Permalink Normal View History

2020-11-22 23:25:22 -06:00
file(GLOB TEMPEST_SOURCES
"*.cpp"
2020-11-29 13:19:28 -06:00
"matrix/*.cpp"
2022-12-24 17:30:47 -06:00
"quaternion/*.cpp"
2022-12-24 15:09:50 -06:00
"rect/*.cpp"
2020-11-22 23:25:22 -06:00
"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
PUBLIC
2020-11-26 08:54:05 -06:00
storm
)