blob: f3d54948febfcb668f28ba3f0dfeebe27b2acbd6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
project(sim)
add_library(
${PROJECT_NAME}
src/BaseBattle.cpp
src/Battle.cpp
src/Builder.cpp
src/Point.cpp
src/RandomSpawner.cpp
src/TeamManager.cpp
)
target_include_directories(
${PROJECT_NAME}
PUBLIC include
)
target_link_libraries(
${PROJECT_NAME}
PUBLIC EnTT::EnTT
PUBLIC campaign
PRIVATE stats
PUBLIC universe
)
|