]> granicus.if.org Git - icinga2/blob - icinga-installer/CMakeLists.txt
Fix support for building debug MSI packages
[icinga2] / icinga-installer / CMakeLists.txt
1 # Icinga 2
2 # Copyright (C) 2012-2016 Icinga Development Team (https://www.icinga.org/)
3 #
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software Foundation
16 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
17
18 foreach(flag_var
19         CMAKE_CXX_FLAGS CMAKE_CXX_FLAGS_DEBUG CMAKE_CXX_FLAGS_RELEASE
20         CMAKE_CXX_FLAGS_MINSIZEREL CMAKE_CXX_FLAGS_RELWITHDEBINFO)
21    if(${flag_var} MATCHES "/MD")
22       string(REGEX REPLACE "/MD" "/MT" ${flag_var} "${${flag_var}}")
23    endif(${flag_var} MATCHES "/MD")
24 endforeach(flag_var)
25
26 add_executable(icinga-installer icinga-installer.cpp)
27
28 set_target_properties(
29   icinga-installer PROPERTIES
30   FOLDER Bin
31   OUTPUT_NAME icinga2-installer
32   LINK_FLAGS "/SUBSYSTEM:WINDOWS"
33 )
34
35 target_link_libraries(icinga-installer shlwapi)
36
37 install(CODE "
38 set(CPACK_WIX_PATCH_FILE \"\${CMAKE_CURRENT_BINARY_DIR}/icinga-installer/icinga2.wixpatch.\${BUILD_TYPE}\")
39 ")
40
41 file(
42   GENERATE
43   OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/icinga2.wixpatch.$<CONFIG>"
44   INPUT "${CMAKE_CURRENT_SOURCE_DIR}/icinga2.wixpatch.cmake"
45 )
46
47 set(InstallPath "${CMAKE_INSTALL_SBINDIR}")
48
49 install(
50   TARGETS icinga-installer
51   RUNTIME DESTINATION ${InstallPath}
52 )