diff options
Diffstat (limited to 'data/conf/CMakeLists.txt')
| -rw-r--r-- | data/conf/CMakeLists.txt | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/data/conf/CMakeLists.txt b/data/conf/CMakeLists.txt index df336b4..29ab1c8 100644 --- a/data/conf/CMakeLists.txt +++ b/data/conf/CMakeLists.txt @@ -8,7 +8,9 @@ # CURRENT DIRECTORY FILES ############################################################################### IF ( Server ) - INSTALL ( FILES server.conf - DESTINATION ${CMAKE_INSTALL_ETCDIR}/${APPNAME} ) + CONFIGURE_FILE ( ${CMAKE_SOURCE_DIR}/data/conf/arena.conf.in ${CMAKE_SOURCE_DIR}/data/conf/arena.conf ) + FILE ( GLOB files "*.conf" ) + INSTALL ( FILES ${files} + DESTINATION ${CMAKE_INSTALL_ETCDIR}/${APPNAME} ) ENDIF ( Server ) ###############################################################################
\ No newline at end of file |