From 18a763bcb19c5ece4b7b7d079dab07a1d915deb6 Mon Sep 17 00:00:00 2001 From: Aki Date: Sat, 3 Dec 2022 00:44:07 +0100 Subject: Moved battles module files to sim --- sim/CMakeLists.txt | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 sim/CMakeLists.txt (limited to 'sim/CMakeLists.txt') diff --git a/sim/CMakeLists.txt b/sim/CMakeLists.txt new file mode 100644 index 0000000..f7478e3 --- /dev/null +++ b/sim/CMakeLists.txt @@ -0,0 +1,21 @@ +project(battles) +add_library( + ${PROJECT_NAME} + src/BaseBattle.cpp + src/Battle.cpp + src/Builder.cpp + src/Point.cpp + src/RandomSpawner.cpp + src/Scenario.cpp + src/scenarios.cpp + src/TeamManager.cpp +) +target_include_directories( + ${PROJECT_NAME} + PUBLIC include +) +target_link_libraries( + ${PROJECT_NAME} + PUBLIC EnTT::EnTT + PUBLIC universe +) -- cgit v1.1