Do not pack music on installation (#1671)

install-platforms
Julius Michaelis 2017-12-12 10:18:15 +01:00
parent be10e95698
commit e324289f8d
1 changed files with 6 additions and 1 deletions

View File

@ -1475,7 +1475,6 @@ ENDIF()
set(OC_C4GROUPS set(OC_C4GROUPS
Graphics.ocg Graphics.ocg
Material.ocg Material.ocg
Music.ocg
Sound.ocg Sound.ocg
System.ocg System.ocg
Objects.ocd Objects.ocd
@ -1487,6 +1486,9 @@ set(OC_C4GROUPS
Tutorials.ocf Tutorials.ocf
Worlds.ocf Worlds.ocf
) )
if(APPLE)
list(APPEND OC_C4GROUPS Music.ocg)
endif()
foreach(group ${OC_C4GROUPS}) foreach(group ${OC_C4GROUPS})
if (APPLE) if (APPLE)
@ -1520,6 +1522,9 @@ foreach(group ${OC_C4GROUPS})
endforeach() endforeach()
if(NOT APPLE) if(NOT APPLE)
if(NOT HEADLESS_ONLY)
install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/planet/Music.ocg DESTINATION share/games/openclonk)
endif()
# group files (game data) # group files (game data)
add_custom_target(groups DEPENDS ${OC_C4GROUPS}) add_custom_target(groups DEPENDS ${OC_C4GROUPS})
set_property(TARGET groups PROPERTY FOLDER "Setup") set_property(TARGET groups PROPERTY FOLDER "Setup")