thunderbrew/src/model/CMakeLists.txt

23 lines
327 B
CMake

file(GLOB PRIVATE_SOURCES "*.cpp")
add_library(model STATIC
${PRIVATE_SOURCES}
)
target_include_directories(model
PRIVATE
${CMAKE_SOURCE_DIR}/src
)
target_link_libraries(model
PRIVATE
async
gx
math
util
PUBLIC
bc
common
storm
tempest
)