mirror of
https://github.com/thunderbrewhq/typhoon.git
synced 2025-12-12 02:22:30 +00:00
13 lines
191 B
CMake
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}
|
|
)
|