Browse Source

install scripts directory only when scripting modules are enabled

Andrey Filipenkov 3 years ago
parent
commit
5f0a8419d3
1 changed files with 3 additions and 1 deletions
  1. 3 1
      CMakeLists.txt

+ 3 - 1
CMakeLists.txt

@@ -451,8 +451,10 @@ endif()
 #######################################
 #######################################
 
 
 install(DIRECTORY config DESTINATION ${DATA_DIR})
 install(DIRECTORY config DESTINATION ${DATA_DIR})
-install(DIRECTORY scripts DESTINATION ${DATA_DIR})
 install(DIRECTORY Mods DESTINATION ${DATA_DIR})
 install(DIRECTORY Mods DESTINATION ${DATA_DIR})
+if(ENABLE_LUA)
+	install(DIRECTORY scripts DESTINATION ${DATA_DIR})
+endif()
 
 
 # that script is useless for Windows and iOS
 # that script is useless for Windows and iOS
 if(NOT WIN32 AND NOT APPLE_IOS)
 if(NOT WIN32 AND NOT APPLE_IOS)