mirror of
https://github.com/thunderbrewhq/typhoon.git
synced 2025-12-12 10:32:29 +00:00
20 lines
285 B
CMake
20 lines
285 B
CMake
file(GLOB TEMPEST_SOURCES
|
|
"*.cpp"
|
|
"matrix/*.cpp"
|
|
"rect/*.cpp"
|
|
"vector/*.cpp"
|
|
)
|
|
|
|
add_library(tempest STATIC
|
|
${TEMPEST_SOURCES}
|
|
)
|
|
|
|
target_include_directories(tempest
|
|
PUBLIC
|
|
${PROJECT_SOURCE_DIR}
|
|
)
|
|
|
|
target_link_libraries(tempest
|
|
PUBLIC
|
|
storm
|
|
)
|