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. --- universe/CMakeLists.txt | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 universe/CMakeLists.txt (limited to 'universe/CMakeLists.txt') diff --git a/universe/CMakeLists.txt b/universe/CMakeLists.txt new file mode 100644 index 0000000..24457c5 --- /dev/null +++ b/universe/CMakeLists.txt @@ -0,0 +1,8 @@ +project(universe) +add_library( + ${PROJECT_NAME} INTERFACE +) +target_include_directories( + ${PROJECT_NAME} + INTERFACE include +) -- cgit v1.1