diff options
Diffstat (limited to 'data/image/CMakeLists.txt')
| -rw-r--r-- | data/image/CMakeLists.txt | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/data/image/CMakeLists.txt b/data/image/CMakeLists.txt index 4d428a1..48a7e27 100644 --- a/data/image/CMakeLists.txt +++ b/data/image/CMakeLists.txt @@ -7,7 +7,9 @@ ############################################################################### # CURRENT DIRECTORY FILES ############################################################################### -FILE ( GLOB files "*.png" ) -INSTALL ( FILES ${files} - DESTINATION ${CMAKE_INSTALL_DATADIR}/${APPNAME}/images/ ) +IF ( NOT Server ) + FILE ( GLOB files "*.png" ) + INSTALL ( FILES ${files} + DESTINATION ${CMAKE_INSTALL_DATADIR}/${APPNAME}/images/ ) +ENDIF ( NOT Server ) ###############################################################################
\ No newline at end of file |