thunderbrew/src/world/CMakeLists.txt
2025-08-02 01:41:58 +04:00

28 lines
373 B
CMake

file(GLOB PRIVATE_SOURCES
"daynight/*.cpp"
"map/*.cpp"
"*.cpp"
)
add_library(world STATIC
${PRIVATE_SOURCES}
)
target_include_directories(world
PRIVATE
${CMAKE_SOURCE_DIR}/src
)
target_link_libraries(world
PRIVATE
gx
model
gameui
cursor
PUBLIC
bc
common
storm
tempest
)