]> granicus.if.org Git - icinga2/blob - lib/notification/CMakeLists.txt
Implement modified attributes v2
[icinga2] / lib / notification / CMakeLists.txt
1 # Icinga 2
2 # Copyright (C) 2012-2015 Icinga Development Team (http://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 mkclass_target(notificationcomponent.ti notificationcomponent.tcpp notificationcomponent.thpp)
19
20 set(notification_SOURCES
21   notificationcomponent.cpp notificationcomponent.thpp
22 )
23
24 if(ICINGA2_UNITY_BUILD)
25     mkunity_target(notification notification_SOURCES)
26 endif()
27
28 add_library(notification SHARED ${notification_SOURCES})
29
30 target_link_libraries(notification ${Boost_LIBRARIES} base config icinga)
31
32 set_target_properties (
33   notification PROPERTIES
34   INSTALL_RPATH ${CMAKE_INSTALL_FULL_LIBDIR}/icinga2
35   DEFINE_SYMBOL I2_NOTIFICATION_BUILD
36   FOLDER Components
37 )
38
39 install_if_not_exists(
40   ${PROJECT_SOURCE_DIR}/etc/icinga2/features-available/notification.conf
41   ${CMAKE_INSTALL_SYSCONFDIR}/icinga2/features-available
42 )
43
44 if(NOT WIN32)
45   install(CODE "file(MAKE_DIRECTORY \"\$ENV{DESTDIR}${CMAKE_INSTALL_FULL_SYSCONFDIR}/icinga2/features-enabled\")")
46   install(CODE "execute_process(COMMAND \"${CMAKE_COMMAND}\" -E create_symlink ../features-available/notification.conf \"\$ENV{DESTDIR}${CMAKE_INSTALL_FULL_SYSCONFDIR}/icinga2/features-enabled/notification.conf\")")
47 else()
48   install(
49     FILES ${PROJECT_SOURCE_DIR}/etc/icinga2/features-enabled/notification.conf
50     DESTINATION ${CMAKE_INSTALL_SYSCONFDIR}/icinga2/features-enabled
51   )
52 endif()
53
54 install(TARGETS notification RUNTIME DESTINATION ${CMAKE_INSTALL_SBINDIR} LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}/icinga2)
55
56 set(CPACK_NSIS_EXTRA_INSTALL_COMMANDS "${CPACK_NSIS_EXTRA_INSTALL_COMMANDS}" PARENT_SCOPE)