From 13e4f3e3908220d484b01b9fb6dc4375ab28a16e Mon Sep 17 00:00:00 2001 From: Aki Date: Sat, 3 Dec 2022 01:01:39 +0100 Subject: Extracted Scenario and related things into own campaign module --- campaign/CMakeLists.txt | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 campaign/CMakeLists.txt (limited to 'campaign/CMakeLists.txt') diff --git a/campaign/CMakeLists.txt b/campaign/CMakeLists.txt new file mode 100644 index 0000000..ca2663a --- /dev/null +++ b/campaign/CMakeLists.txt @@ -0,0 +1,14 @@ +project(campaign) +add_library( + ${PROJECT_NAME} + src/Scenario.cpp + src/scenarios.cpp +) +target_include_directories( + ${PROJECT_NAME} + PUBLIC include +) +target_link_libraries( + ${PROJECT_NAME} + PUBLIC universe +) -- cgit v1.1