###################### # # Copyright (C) 2012 EngSaS - Engineering Solutions and Services Langenbach. All rights reserved. # # 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 3 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, see . # ###################### # Installing man pages # the english pages are installed in every case, even if L10N_EN is not set to ON IF(NOT COMPATIBLE_WITH_NON_KDE) SET(man1_FILES "${CMAKE_CURRENT_SOURCE_DIR}/man/man1/epartexe.1") ENDIF(NOT COMPATIBLE_WITH_NON_KDE) IF(COMPATIBLE_WITH_NON_KDE) SET(man1_FILES ${man1_FILES} "${CMAKE_CURRENT_SOURCE_DIR}/man/man1/epartexe-kde.1") ENDIF(COMPATIBLE_WITH_NON_KDE) INSTALL( FILES ${man1_FILES} DESTINATION ${man_DIR}/man1 COMPONENT docman ) # IF(L10N_DE) # FILE(GLOB man1_DE_FILES "${CMAKE_CURRENT_SOURCE_DIR}/man/de/man1/*.1") # INSTALL( # FILES ${man1_DE_FILES} # DESTINATION ${man_DIR}/de/man1 # COMPONENT docman # ) # ENDIF(L10N_DE)