]> granicus.if.org Git - icinga2/blob - icinga-installer/CMakeLists.txt
Ensure that *.icinga.com is used everywhere
[icinga2] / icinga-installer / CMakeLists.txt
1 # Icinga 2
2 # Copyright (C) 2012-2017 Icinga Development Team (https://www.icinga.com/)
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   execute_process(COMMAND \${CMAKE_COMMAND} -E copy \"${CMAKE_CURRENT_BINARY_DIR}/icinga2.wixpatch.\${BUILD_TYPE}\"
39                   \"${CMAKE_CURRENT_BINARY_DIR}/icinga2.wixpatch\"
40                   RESULT_VARIABLE copy_result
41                   ERROR_VARIABLE error_output)
42   if(copy_result)
43     message(FATAL_ERROR \${error_output})
44   endif()
45 ")
46
47 file(
48   GENERATE
49   OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/icinga2.wixpatch.$<CONFIG>"
50   INPUT "${CMAKE_CURRENT_SOURCE_DIR}/icinga2.wixpatch.cmake"
51 )
52
53 set(InstallPath "${CMAKE_INSTALL_SBINDIR}")
54
55 install(
56   TARGETS icinga-installer
57   RUNTIME DESTINATION ${InstallPath}
58 )