]> granicus.if.org Git - icinga2/blob - lib/notification/CMakeLists.txt
Change copyright header for 2018
[icinga2] / lib / notification / CMakeLists.txt
1 # Icinga 2
2 # Copyright (C) 2012-2018 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 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 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   VERSION ${SPEC_VERSION}
38 )
39
40 install_if_not_exists(
41   ${PROJECT_SOURCE_DIR}/etc/icinga2/features-available/notification.conf
42   ${CMAKE_INSTALL_SYSCONFDIR}/icinga2/features-available
43 )
44
45 if(NOT WIN32)
46   install(CODE "file(MAKE_DIRECTORY \"\$ENV{DESTDIR}${CMAKE_INSTALL_FULL_SYSCONFDIR}/icinga2/features-enabled\")")
47   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\")")
48 else()
49   install_if_not_exists(${PROJECT_SOURCE_DIR}/etc/icinga2/features-enabled/notification.conf ${CMAKE_INSTALL_SYSCONFDIR}/icinga2/features-enabled)
50 endif()
51
52 install(TARGETS notification RUNTIME DESTINATION ${CMAKE_INSTALL_SBINDIR} LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}/icinga2)
53
54 set(CPACK_NSIS_EXTRA_INSTALL_COMMANDS "${CPACK_NSIS_EXTRA_INSTALL_COMMANDS}" PARENT_SCOPE)