From f154bc35014e2b72c2e925d83c17ae2c20c7425a Mon Sep 17 00:00:00 2001 From: Aki Date: Sat, 21 Jan 2023 16:24:49 +0100 Subject: Inernal libraries are now static --- campaign/CMakeLists.txt | 2 +- sim/CMakeLists.txt | 2 +- universe/CMakeLists.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/campaign/CMakeLists.txt b/campaign/CMakeLists.txt index ca2663a..1166457 100644 --- a/campaign/CMakeLists.txt +++ b/campaign/CMakeLists.txt @@ -1,6 +1,6 @@ project(campaign) add_library( - ${PROJECT_NAME} + ${PROJECT_NAME} STATIC src/Scenario.cpp src/scenarios.cpp ) diff --git a/sim/CMakeLists.txt b/sim/CMakeLists.txt index b8c3a89..1cae7b0 100644 --- a/sim/CMakeLists.txt +++ b/sim/CMakeLists.txt @@ -1,6 +1,6 @@ project(sim) add_library( - ${PROJECT_NAME} + ${PROJECT_NAME} STATIC src/BaseBattle.cpp src/Battle.cpp src/Builder.cpp diff --git a/universe/CMakeLists.txt b/universe/CMakeLists.txt index fab238b..1728f1c 100644 --- a/universe/CMakeLists.txt +++ b/universe/CMakeLists.txt @@ -1,6 +1,6 @@ project(universe) add_library( - ${PROJECT_NAME} + ${PROJECT_NAME} STATIC src/JsonRepository.cpp src/NotFound.cpp src/TurretType.cpp -- cgit v1.1