From 2468dd35b23c9b9ca196ed4d9f37be24f032fed2 Mon Sep 17 00:00:00 2001 From: Aki Date: Wed, 15 Mar 2023 01:38:14 +0100 Subject: Fixed missing dependency on json library --- universe/CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/universe/CMakeLists.txt b/universe/CMakeLists.txt index dcfb532..25e8b16 100644 --- a/universe/CMakeLists.txt +++ b/universe/CMakeLists.txt @@ -10,6 +10,10 @@ target_include_directories( ${PROJECT_NAME} PUBLIC include ) +target_link_libraries( + ${PROJECT_NAME} + PRIVATE nlohmann_json::nlohmann_json +) add_resources( universe_resources FILES resources/universe/ship_types.json -- cgit v1.1