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(