# # ORXONOX - the hottest 3D action shooter ever to exist # > www.orxonox.net < # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # # # Author: # Reto Grieder # Description: # Finds the media directory and configures it's installation. # # Specify media directory GET_FILENAME_COMPONENT(_search_path_1 ${CMAKE_SOURCE_DIR}/../${DEFAULT_MEDIA_PATH} ABSOLUTE) FIND_PATH(MEDIA_PATH resources.cfg PATHS ${CMAKE_SOURCE_DIR}/${DEFAULT_MEDIA_PATH} ${_search_path_1} NO_CMAKE_PATH NO_CMAKE_ENVIRONMENT_PATH NO_SYSTEM_ENVIRONMENT_PATH NO_CMAKE_SYSTEM_PATH ) # For consistency with other variables for config, log, bin, etc. SET(CMAKE_MEDIA_OUTPUT_DIRECTORY ${MEDIA_PATH}) IF(NOT CMAKE_MEDIA_OUTPUT_DIRECTORY) MESSAGE(STATUS "Warning: Media directory not found. If you want to compile while downloading the media files, you will have to recompile about four files afterwards and relink everything. Default location is orxonox_root/media") # Temporary override to the default location. SET(CMAKE_MEDIA_OUTPUT_DIRECTORY ${CMAKE_SOURCE_DIR}/media) ENDIF() ################ Installation ################# INSTALL( DIRECTORY ${CMAKE_MEDIA_OUTPUT_DIRECTORY}/ DESTINATION ${ORXONOX_MEDIA_INSTALL_PATH} REGEX "\\.svn$|_svn$|backToPNG" EXCLUDE )