blob: d193630de95150785ececea720028079b2491942 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
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
PUBLIC universe
)
|