]> granicus.if.org Git - icinga2/blob - icinga-installer/CMakeLists.txt
Make sure NSIS-based installations are uninstalled before we copy the new
[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 get_property(ICINGA2_INSTALLER_TARGET TARGET icinga-installer PROPERTY LOCATION_Release)
38 configure_file(icinga2.wixpatch.cmake ${CMAKE_CURRENT_BINARY_DIR}/icinga2.wixpatch @ONLY)
39
40 set(InstallPath "${CMAKE_INSTALL_SBINDIR}")
41
42 install(
43   TARGETS icinga-installer
44   RUNTIME DESTINATION ${InstallPath}
45 )