From caa48ce5946d093daaf950751dfa1432ea5373a9 Mon Sep 17 00:00:00 2001 From: Aki Date: Tue, 8 Nov 2022 23:54:23 +0100 Subject: Creating skeleton for battle simulation and universe data This might be a bit too much and a bit too blindly, but let's see how it evolves. --- battles/CMakeLists.txt | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 battles/CMakeLists.txt (limited to 'battles/CMakeLists.txt') diff --git a/battles/CMakeLists.txt b/battles/CMakeLists.txt new file mode 100644 index 0000000..c9b2c19 --- /dev/null +++ b/battles/CMakeLists.txt @@ -0,0 +1,14 @@ +project(battles) +add_library( + ${PROJECT_NAME} + src/Battle.cpp +) +target_include_directories( + ${PROJECT_NAME} + PUBLIC include +) +target_link_libraries( + ${PROJECT_NAME} + PUBLIC EnTT::EnTT + PUBLIC universe +) -- cgit v1.1