diff options
author | Aki <please@ignore.pl> | 2023-03-15 01:38:14 +0100 |
---|---|---|
committer | Aki <please@ignore.pl> | 2024-04-05 19:41:19 +0200 |
commit | 2468dd35b23c9b9ca196ed4d9f37be24f032fed2 (patch) | |
tree | 48db87843d3b5ce1b538d93cb947fb653dbe722a /universe | |
parent | d587bdf60a4cce6c4b691c76c542024c5b3a3736 (diff) | |
download | kurator-2468dd35b23c9b9ca196ed4d9f37be24f032fed2.zip kurator-2468dd35b23c9b9ca196ed4d9f37be24f032fed2.tar.gz kurator-2468dd35b23c9b9ca196ed4d9f37be24f032fed2.tar.bz2 |
Fixed missing dependency on json library
Diffstat (limited to 'universe')
-rw-r--r-- | universe/CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
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 |