From f112f060c98f43bcc27ec4d9d90f8a1a411ff26d Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Sun, 13 Feb 2022 12:07:18 -0600 Subject: [PATCH] [nostalgia/geo] Rename library artifact to NostalgiaGeo --- src/nostalgia/geo/CMakeLists.txt | 11 ++++++++--- src/nostalgia/tools/pack/CMakeLists.txt | 2 +- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/src/nostalgia/geo/CMakeLists.txt b/src/nostalgia/geo/CMakeLists.txt index 759963b4..eda62d45 100644 --- a/src/nostalgia/geo/CMakeLists.txt +++ b/src/nostalgia/geo/CMakeLists.txt @@ -1,13 +1,18 @@ add_library( - NostalgiaCommon + NostalgiaGeo bounds.cpp vec.cpp ) +target_link_libraries( + NostalgiaGeo + OxStd +) + install( TARGETS - NostalgiaCommon + NostalgiaGeo DESTINATION LIBRARY DESTINATION lib/nostalgia ARCHIVE DESTINATION lib/nostalgia @@ -21,5 +26,5 @@ install( size.hpp vec.hpp DESTINATION - include/nostalgia/common + include/nostalgia/geo ) diff --git a/src/nostalgia/tools/pack/CMakeLists.txt b/src/nostalgia/tools/pack/CMakeLists.txt index 73bb89e5..a7c1fa2e 100644 --- a/src/nostalgia/tools/pack/CMakeLists.txt +++ b/src/nostalgia/tools/pack/CMakeLists.txt @@ -8,8 +8,8 @@ target_link_libraries( NostalgiaPack PUBLIC OxClaw OxFS - NostalgiaCommon NostalgiaCore + NostalgiaGeo ) install(