Quellcode durchsuchen

Moving unnecessary install files from bin directory to align with packaging

James Mitchell vor 6 Jahren
Ursprung
Commit
00ad629b35
2 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. 1 1
      CMakeLists.txt
  2. 1 1
      Source/Game/CMakeLists.txt

+ 1 - 1
CMakeLists.txt

@@ -76,7 +76,7 @@ endif()
 ## Install
 install(
 	DIRECTORY Data/
-	DESTINATION bin/EditorData
+	DESTINATION EditorData
 	PATTERN "Data/Raw" EXCLUDE
 	PATTERN ".version" EXCLUDE
 	PATTERN ".reqversion" EXCLUDE

+ 1 - 1
Source/Game/CMakeLists.txt

@@ -73,5 +73,5 @@ endif()
 	
 install(
 	TARGETS Game
-	RUNTIME DESTINATION bin/EditorData/Binaries/${PLATFORM_PATH_PREFIX}
+	RUNTIME DESTINATION EditorData/Binaries/${PLATFORM_PATH_PREFIX}
 )