mirror of
https://github.com/thunderbrewhq/squall.git
synced 2025-12-12 10:32:29 +00:00
10 lines
172 B
CMake
10 lines
172 B
CMake
file(GLOB_RECURSE STORM_SOURCES "*.cpp")
|
|
|
|
add_library(storm STATIC
|
|
${STORM_SOURCES}
|
|
)
|
|
|
|
target_include_directories(storm
|
|
PRIVATE
|
|
${CMAKE_SOURCE_DIR}/storm
|
|
)
|