You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
692 B
25 lines
692 B
#################################################
|
|
#
|
|
# (C) 2016 Alexander Golubev
|
|
# fatzer2 (AT) gmail.com
|
|
#
|
|
# Improvements and feedback are welcome
|
|
#
|
|
# This file is released under GPL >= 2
|
|
#
|
|
#################################################
|
|
|
|
install( FILES games.dat hi_level.dat hi_plws.dat hi_plwv.dat hi_wad.dat
|
|
DESTINATION ${DATA_INSTALL_DIR}/kgoldrunner/system
|
|
)
|
|
|
|
# To not to list all files in add_custom_command do all the preparation on
|
|
# configuration stage
|
|
execute_process( COMMAND
|
|
tar -xf "${CMAKE_CURRENT_SOURCE_DIR}/levels.tar" -C ${CMAKE_CURRENT_BINARY_DIR}
|
|
)
|
|
|
|
install( DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/levels
|
|
DESTINATION ${DATA_INSTALL_DIR}/kgoldrunner/system )
|
|
|