diff options
| author | Tomas Chvatal <scarabeus@gentoo.org> | 2009-04-12 15:45:29 +0200 |
|---|---|---|
| committer | Tomas Chvatal <scarabeus@gentoo.org> | 2009-04-12 15:45:29 +0200 |
| commit | 5876841408bf307d78d254b5ca355c61044e9e72 (patch) | |
| tree | cea149f6b8db26bf40685267d302c4edc48b4592 | |
| parent | 3779a2e2aed31a2a9d9873b9880f874e65d7269d (diff) | |
Install config files
| -rw-r--r-- | data/conf/CMakeLists.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/data/conf/CMakeLists.txt b/data/conf/CMakeLists.txt index 29ab1c8..d0bce4d 100644 --- a/data/conf/CMakeLists.txt +++ b/data/conf/CMakeLists.txt @@ -7,10 +7,10 @@ ############################################################################### # CURRENT DIRECTORY FILES ############################################################################### -IF ( Server ) +IF ( WITH_SERVER ) 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 +ENDIF ( WITH_SERVER ) +############################################################################### |