mirror of
https://github.com/Icinga/icinga2.git
synced 2025-07-23 05:34:48 +02:00
Merge pull request #5993 from Icinga/feature/cmake-object-libs
Use CMake object libraries for our libs
This commit is contained in:
commit
9b170b779c
@ -142,6 +142,30 @@ include_directories(
|
|||||||
${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_CURRENT_BINARY_DIR}/lib
|
${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_CURRENT_BINARY_DIR}/lib
|
||||||
)
|
)
|
||||||
|
|
||||||
|
set(base_DEPS ${CMAKE_DL_LIBS} ${Boost_LIBRARIES} ${OPENSSL_LIBRARIES} ${YAJL_LIBRARIES} mmatch socketpair)
|
||||||
|
|
||||||
|
if(HAVE_LIBEXECINFO)
|
||||||
|
list(APPEND base_DEPS execinfo)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(UNIX OR CYGWIN)
|
||||||
|
list(APPEND base_DEPS execvpe)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(EDITLINE_FOUND)
|
||||||
|
list(APPEND base_DEPS ${EDITLINE_LIBRARIES})
|
||||||
|
include_directories(${EDITLINE_INCLUDE_DIR})
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(TERMCAP_FOUND)
|
||||||
|
list(APPEND base_DEPS ${TERMCAP_LIBRARIES})
|
||||||
|
include_directories(${TERMCAP_INCLUDE_DIR})
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(WIN32)
|
||||||
|
list(APPEND base_DEPS ws2_32 dbghelp shlwapi msi)
|
||||||
|
endif()
|
||||||
|
|
||||||
set(CMAKE_MACOSX_RPATH 1)
|
set(CMAKE_MACOSX_RPATH 1)
|
||||||
|
|
||||||
if(CMAKE_CXX_COMPILER_ID MATCHES "Clang")
|
if(CMAKE_CXX_COMPILER_ID MATCHES "Clang")
|
||||||
@ -177,21 +201,6 @@ if(CMAKE_C_COMPILER_ID STREQUAL "GNU")
|
|||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(CMAKE_SYSTEM_NAME MATCHES "Darwin")
|
|
||||||
function(add_whole_static_library target library)
|
|
||||||
target_link_libraries(${target} -force_load ${library})
|
|
||||||
endfunction()
|
|
||||||
elseif(MSVC)
|
|
||||||
function(add_whole_static_library target library)
|
|
||||||
target_link_libraries(${target} ${library})
|
|
||||||
set_property(TARGET ${target} APPEND_STRING PROPERTY LINK_FLAGS "/wholearchive:${library} ")
|
|
||||||
endfunction()
|
|
||||||
else()
|
|
||||||
function(add_whole_static_library target library)
|
|
||||||
target_link_libraries(${target} -Wl,--whole-archive ${library} -Wl,--no-whole-archive)
|
|
||||||
endfunction()
|
|
||||||
endif()
|
|
||||||
|
|
||||||
include(CheckCXXCompilerFlag)
|
include(CheckCXXCompilerFlag)
|
||||||
|
|
||||||
function(check_cxx_linker_flag flag var)
|
function(check_cxx_linker_flag flag var)
|
||||||
|
@ -31,49 +31,51 @@ add_dependencies(icingaloader base config cli)
|
|||||||
|
|
||||||
include_directories(${Boost_INCLUDE_DIRS})
|
include_directories(${Boost_INCLUDE_DIRS})
|
||||||
|
|
||||||
add_executable(icinga-app $<TARGET_OBJECTS:icingaloader>)
|
|
||||||
|
|
||||||
add_whole_static_library(icinga-app base)
|
|
||||||
add_whole_static_library(icinga-app config)
|
|
||||||
add_whole_static_library(icinga-app remote)
|
|
||||||
add_whole_static_library(icinga-app cli)
|
|
||||||
|
|
||||||
if(ICINGA2_WITH_CHECKER)
|
if(ICINGA2_WITH_CHECKER)
|
||||||
add_whole_static_library(icinga-app checker)
|
list(APPEND icinga_app_SOURCES $<TARGET_OBJECTS:checker>)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(ICINGA2_WITH_COMPAT)
|
if(ICINGA2_WITH_COMPAT)
|
||||||
add_whole_static_library(icinga-app compat)
|
list(APPEND icinga_app_SOURCES $<TARGET_OBJECTS:compat>)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(ICINGA2_WITH_MYSQL OR ICINGA2_WITH_PGSQL)
|
if(ICINGA2_WITH_MYSQL OR ICINGA2_WITH_PGSQL)
|
||||||
add_whole_static_library(icinga-app db_ido)
|
list(APPEND icinga_app_SOURCES $<TARGET_OBJECTS:db_ido>)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(ICINGA2_WITH_MYSQL)
|
if(ICINGA2_WITH_MYSQL)
|
||||||
add_whole_static_library(icinga-app db_ido_mysql)
|
list(APPEND icinga_app_SOURCES $<TARGET_OBJECTS:db_ido_mysql>)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(ICINGA2_WITH_PGSQL)
|
if(ICINGA2_WITH_PGSQL)
|
||||||
add_whole_static_library(icinga-app db_ido_pgsql)
|
list(APPEND icinga_app_SOURCES $<TARGET_OBJECTS:db_ido_pgsql>)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
add_whole_static_library(icinga-app icinga)
|
|
||||||
|
|
||||||
if(ICINGA2_WITH_LIVESTATUS)
|
if(ICINGA2_WITH_LIVESTATUS)
|
||||||
add_whole_static_library(icinga-app livestatus)
|
list(APPEND icinga_app_SOURCES $<TARGET_OBJECTS:livestatus>)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
add_whole_static_library(icinga-app methods)
|
|
||||||
|
|
||||||
if(ICINGA2_WITH_NOTIFICATION)
|
if(ICINGA2_WITH_NOTIFICATION)
|
||||||
add_whole_static_library(icinga-app notification)
|
list(APPEND icinga_app_SOURCES $<TARGET_OBJECTS:notification>)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(ICINGA2_WITH_PERFDATA)
|
if(ICINGA2_WITH_PERFDATA)
|
||||||
add_whole_static_library(icinga-app perfdata)
|
list(APPEND icinga_app_SOURCES $<TARGET_OBJECTS:perfdata>)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
add_executable(icinga-app
|
||||||
|
$<TARGET_OBJECTS:icingaloader>
|
||||||
|
$<TARGET_OBJECTS:base>
|
||||||
|
$<TARGET_OBJECTS:config>
|
||||||
|
$<TARGET_OBJECTS:remote>
|
||||||
|
$<TARGET_OBJECTS:cli>
|
||||||
|
$<TARGET_OBJECTS:icinga>
|
||||||
|
$<TARGET_OBJECTS:methods>
|
||||||
|
${icinga_app_SOURCES}
|
||||||
|
)
|
||||||
|
|
||||||
|
target_link_libraries(icinga-app ${base_DEPS})
|
||||||
|
|
||||||
set_target_properties (
|
set_target_properties (
|
||||||
icinga-app PROPERTIES
|
icinga-app PROPERTIES
|
||||||
INSTALL_RPATH ${CMAKE_INSTALL_FULL_LIBDIR}/icinga2
|
INSTALL_RPATH ${CMAKE_INSTALL_FULL_LIBDIR}/icinga2
|
||||||
|
@ -32,14 +32,14 @@ set(icinga_studio_SOURCES
|
|||||||
connectform.cpp connectform.hpp
|
connectform.cpp connectform.hpp
|
||||||
mainform.cpp mainform.hpp
|
mainform.cpp mainform.hpp
|
||||||
icinga.icns ${WindowsSources}
|
icinga.icns ${WindowsSources}
|
||||||
|
$<TARGET_OBJECTS:base>
|
||||||
|
$<TARGET_OBJECTS:config>
|
||||||
|
$<TARGET_OBJECTS:remote>
|
||||||
)
|
)
|
||||||
|
|
||||||
add_executable(icinga-studio MACOSX_BUNDLE WIN32 ${icinga_studio_SOURCES})
|
add_executable(icinga-studio MACOSX_BUNDLE WIN32 ${icinga_studio_SOURCES})
|
||||||
|
|
||||||
include_directories(${Boost_INCLUDE_DIRS})
|
target_link_libraries(icinga-studio ${base_DEPS} ${wxWidgets_LIBRARIES})
|
||||||
target_link_libraries(icinga-studio ${Boost_LIBRARIES} ${wxWidgets_LIBRARIES})
|
|
||||||
add_whole_static_library(icinga-studio base)
|
|
||||||
add_whole_static_library(icinga-studio remote)
|
|
||||||
|
|
||||||
if(APPLE)
|
if(APPLE)
|
||||||
set_source_files_properties(icinga.icns PROPERTIES MACOSX_PACKAGE_LOCATION Resources)
|
set_source_files_properties(icinga.icns PROPERTIES MACOSX_PACKAGE_LOCATION Resources)
|
||||||
|
@ -97,13 +97,7 @@ if(ICINGA2_UNITY_BUILD)
|
|||||||
mkunity_target(base base base_SOURCES)
|
mkunity_target(base base base_SOURCES)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
add_library(base STATIC ${base_SOURCES})
|
add_library(base OBJECT ${base_SOURCES})
|
||||||
|
|
||||||
target_link_libraries(base ${CMAKE_DL_LIBS} ${Boost_LIBRARIES} ${OPENSSL_LIBRARIES} ${YAJL_LIBRARIES} mmatch socketpair)
|
|
||||||
|
|
||||||
if(HAVE_LIBEXECINFO)
|
|
||||||
target_link_libraries(base execinfo)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
include_directories(${icinga2_SOURCE_DIR}/third-party/execvpe)
|
include_directories(${icinga2_SOURCE_DIR}/third-party/execvpe)
|
||||||
link_directories(${icinga2_BINARY_DIR}/third-party/execvpe)
|
link_directories(${icinga2_BINARY_DIR}/third-party/execvpe)
|
||||||
@ -114,14 +108,6 @@ link_directories(${icinga2_BINARY_DIR}/third-party/mmatch)
|
|||||||
include_directories(${icinga2_SOURCE_DIR}/third-party/socketpair)
|
include_directories(${icinga2_SOURCE_DIR}/third-party/socketpair)
|
||||||
link_directories(${icinga2_BINARY_DIR}/third-party/socketpair)
|
link_directories(${icinga2_BINARY_DIR}/third-party/socketpair)
|
||||||
|
|
||||||
if(UNIX OR CYGWIN)
|
|
||||||
target_link_libraries(base execvpe)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
if(WIN32)
|
|
||||||
target_link_libraries(base ws2_32 dbghelp shlwapi msi)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
set_target_properties (
|
set_target_properties (
|
||||||
base PROPERTIES
|
base PROPERTIES
|
||||||
FOLDER Lib
|
FOLDER Lib
|
||||||
|
@ -25,9 +25,9 @@ if(ICINGA2_UNITY_BUILD)
|
|||||||
mkunity_target(checker checker checker_SOURCES)
|
mkunity_target(checker checker checker_SOURCES)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
add_library(checker STATIC ${checker_SOURCES})
|
add_library(checker OBJECT ${checker_SOURCES})
|
||||||
|
|
||||||
target_link_libraries(checker ${Boost_LIBRARIES} base config icinga remote)
|
add_dependencies(checker base config icinga remote)
|
||||||
|
|
||||||
set_target_properties (
|
set_target_properties (
|
||||||
checker PROPERTIES
|
checker PROPERTIES
|
||||||
|
@ -51,19 +51,9 @@ if(ICINGA2_UNITY_BUILD)
|
|||||||
mkunity_target(cli cli cli_SOURCES)
|
mkunity_target(cli cli cli_SOURCES)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
add_library(cli STATIC ${cli_SOURCES})
|
add_library(cli OBJECT ${cli_SOURCES})
|
||||||
|
|
||||||
target_link_libraries(cli ${Boost_LIBRARIES} base config remote)
|
add_dependencies(cli base config remote)
|
||||||
|
|
||||||
if(EDITLINE_FOUND)
|
|
||||||
target_link_libraries(cli ${EDITLINE_LIBRARIES})
|
|
||||||
include_directories(${EDITLINE_INCLUDE_DIR})
|
|
||||||
endif()
|
|
||||||
|
|
||||||
if(TERMCAP_FOUND)
|
|
||||||
target_link_libraries(cli ${TERMCAP_LIBRARIES})
|
|
||||||
include_directories(${TERMCAP_INCLUDE_DIR})
|
|
||||||
endif()
|
|
||||||
|
|
||||||
set_target_properties (
|
set_target_properties (
|
||||||
cli PROPERTIES
|
cli PROPERTIES
|
||||||
|
@ -31,9 +31,9 @@ if(ICINGA2_UNITY_BUILD)
|
|||||||
mkunity_target(compat compat compat_SOURCES)
|
mkunity_target(compat compat compat_SOURCES)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
add_library(compat STATIC ${compat_SOURCES})
|
add_library(compat OBJECT ${compat_SOURCES})
|
||||||
|
|
||||||
target_link_libraries(compat ${Boost_LIBRARIES} base config icinga)
|
add_dependencies(compat base config icinga)
|
||||||
|
|
||||||
set_target_properties (
|
set_target_properties (
|
||||||
compat PROPERTIES
|
compat PROPERTIES
|
||||||
|
@ -52,9 +52,9 @@ if(ICINGA2_UNITY_BUILD)
|
|||||||
mkunity_target(config config config_SOURCES)
|
mkunity_target(config config config_SOURCES)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
add_library(config STATIC ${config_SOURCES})
|
add_library(config OBJECT ${config_SOURCES})
|
||||||
|
|
||||||
target_link_libraries(config ${Boost_LIBRARIES} base)
|
add_dependencies(config base)
|
||||||
|
|
||||||
set_target_properties (
|
set_target_properties (
|
||||||
config PROPERTIES
|
config PROPERTIES
|
||||||
|
@ -45,10 +45,9 @@ if(ICINGA2_UNITY_BUILD)
|
|||||||
mkunity_target(db_ido db_ido db_ido_SOURCES)
|
mkunity_target(db_ido db_ido db_ido_SOURCES)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
add_library(db_ido STATIC ${db_ido_SOURCES})
|
add_library(db_ido OBJECT ${db_ido_SOURCES})
|
||||||
|
|
||||||
include_directories(${Boost_INCLUDE_DIRS})
|
add_dependencies(db_ido base config icinga remote)
|
||||||
target_link_libraries(db_ido ${Boost_LIBRARIES} base config icinga remote)
|
|
||||||
|
|
||||||
set_target_properties (
|
set_target_properties (
|
||||||
db_ido PROPERTIES
|
db_ido PROPERTIES
|
||||||
|
@ -25,11 +25,11 @@ if(ICINGA2_UNITY_BUILD)
|
|||||||
mkunity_target(db_ido_mysql db_ido_mysql db_ido_mysql_SOURCES)
|
mkunity_target(db_ido_mysql db_ido_mysql db_ido_mysql_SOURCES)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
add_library(db_ido_mysql STATIC ${db_ido_mysql_SOURCES})
|
add_library(db_ido_mysql OBJECT ${db_ido_mysql_SOURCES})
|
||||||
|
|
||||||
include_directories(${MYSQL_INCLUDE_DIR})
|
include_directories(${MYSQL_INCLUDE_DIR})
|
||||||
|
|
||||||
target_link_libraries(db_ido_mysql ${Boost_LIBRARIES} base config icinga db_ido)
|
add_dependencies(db_ido_mysql base config icinga db_ido)
|
||||||
|
|
||||||
set_target_properties (
|
set_target_properties (
|
||||||
db_ido_mysql PROPERTIES
|
db_ido_mysql PROPERTIES
|
||||||
|
@ -25,11 +25,11 @@ if(ICINGA2_UNITY_BUILD)
|
|||||||
mkunity_target(db_ido_pgsql db_ido_pgsql db_ido_pgsql_SOURCES)
|
mkunity_target(db_ido_pgsql db_ido_pgsql db_ido_pgsql_SOURCES)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
add_library(db_ido_pgsql STATIC ${db_ido_pgsql_SOURCES})
|
add_library(db_ido_pgsql OBJECT ${db_ido_pgsql_SOURCES})
|
||||||
|
|
||||||
include_directories(${PostgreSQL_INCLUDE_DIRS})
|
include_directories(${PostgreSQL_INCLUDE_DIRS})
|
||||||
|
|
||||||
target_link_libraries(db_ido_pgsql ${Boost_LIBRARIES} base config icinga db_ido)
|
add_dependencies(db_ido_pgsql base config icinga db_ido)
|
||||||
|
|
||||||
set_target_properties (
|
set_target_properties (
|
||||||
db_ido_pgsql PROPERTIES
|
db_ido_pgsql PROPERTIES
|
||||||
|
@ -80,9 +80,9 @@ if(ICINGA2_UNITY_BUILD)
|
|||||||
mkunity_target(icinga icinga icinga_SOURCES)
|
mkunity_target(icinga icinga icinga_SOURCES)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
add_library(icinga STATIC ${icinga_SOURCES})
|
add_library(icinga OBJECT ${icinga_SOURCES})
|
||||||
|
|
||||||
target_link_libraries(icinga ${Boost_LIBRARIES} base config remote)
|
add_dependencies(icinga base config remote)
|
||||||
|
|
||||||
set_target_properties (
|
set_target_properties (
|
||||||
icinga PROPERTIES
|
icinga PROPERTIES
|
||||||
|
@ -61,9 +61,9 @@ if(ICINGA2_UNITY_BUILD)
|
|||||||
mkunity_target(livestatus livestatus livestatus_SOURCES)
|
mkunity_target(livestatus livestatus livestatus_SOURCES)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
add_library(livestatus STATIC ${livestatus_SOURCES})
|
add_library(livestatus OBJECT ${livestatus_SOURCES})
|
||||||
|
|
||||||
target_link_libraries(livestatus ${Boost_LIBRARIES} base config icinga remote)
|
add_dependencies(livestatus base config icinga remote)
|
||||||
|
|
||||||
set_target_properties (
|
set_target_properties (
|
||||||
livestatus PROPERTIES
|
livestatus PROPERTIES
|
||||||
|
@ -44,9 +44,9 @@ if(ICINGA2_UNITY_BUILD)
|
|||||||
mkunity_target(methods methods methods_SOURCES)
|
mkunity_target(methods methods methods_SOURCES)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
add_library(methods STATIC ${methods_SOURCES})
|
add_library(methods OBJECT ${methods_SOURCES})
|
||||||
|
|
||||||
target_link_libraries(methods ${Boost_LIBRARIES} base config icinga)
|
add_dependencies(methods base config icinga)
|
||||||
|
|
||||||
set_target_properties (
|
set_target_properties (
|
||||||
methods PROPERTIES
|
methods PROPERTIES
|
||||||
|
@ -25,9 +25,9 @@ if(ICINGA2_UNITY_BUILD)
|
|||||||
mkunity_target(notification notification notification_SOURCES)
|
mkunity_target(notification notification notification_SOURCES)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
add_library(notification STATIC ${notification_SOURCES})
|
add_library(notification OBJECT ${notification_SOURCES})
|
||||||
|
|
||||||
target_link_libraries(notification ${Boost_LIBRARIES} base config icinga)
|
add_dependencies(notification base config icinga)
|
||||||
|
|
||||||
set_target_properties (
|
set_target_properties (
|
||||||
notification PROPERTIES
|
notification PROPERTIES
|
||||||
|
@ -35,9 +35,9 @@ if(ICINGA2_UNITY_BUILD)
|
|||||||
mkunity_target(perfdata perfdata perfdata_SOURCES)
|
mkunity_target(perfdata perfdata perfdata_SOURCES)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
add_library(perfdata STATIC ${perfdata_SOURCES})
|
add_library(perfdata OBJECT ${perfdata_SOURCES})
|
||||||
|
|
||||||
target_link_libraries(perfdata ${Boost_LIBRARIES} base config icinga)
|
add_dependencies(perfdata base config icinga)
|
||||||
|
|
||||||
set_target_properties (
|
set_target_properties (
|
||||||
perfdata PROPERTIES
|
perfdata PROPERTIES
|
||||||
|
@ -67,10 +67,9 @@ if(ICINGA2_UNITY_BUILD)
|
|||||||
mkunity_target(remote remote remote_SOURCES)
|
mkunity_target(remote remote remote_SOURCES)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
add_library(remote STATIC ${remote_SOURCES})
|
add_library(remote OBJECT ${remote_SOURCES})
|
||||||
|
|
||||||
include_directories(${Boost_INCLUDE_DIRS})
|
add_dependencies(remote base config)
|
||||||
target_link_libraries(remote ${Boost_LIBRARIES} base config)
|
|
||||||
|
|
||||||
set_target_properties (
|
set_target_properties (
|
||||||
remote PROPERTIES
|
remote PROPERTIES
|
||||||
|
@ -15,11 +15,13 @@
|
|||||||
# along with this program; if not, write to the Free Software Foundation
|
# along with this program; if not, write to the Free Software Foundation
|
||||||
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
|
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
|
|
||||||
add_executable ( check_nscp_api check_nscp_api.cpp )
|
add_executable(check_nscp_api
|
||||||
target_link_libraries ( check_nscp_api ${Boost_PROGRAM_OPTIONS_LIBRARY} ${Boost_SYSTEM_LIBRARY})
|
check_nscp_api.cpp
|
||||||
add_whole_static_library(check_nscp_api base)
|
$<TARGET_OBJECTS:base>
|
||||||
add_whole_static_library(check_nscp_api config)
|
$<TARGET_OBJECTS:config>
|
||||||
add_whole_static_library(check_nscp_api remote)
|
$<TARGET_OBJECTS:remote>
|
||||||
|
)
|
||||||
|
target_link_libraries(check_nscp_api ${base_DEPS})
|
||||||
set_target_properties (
|
set_target_properties (
|
||||||
check_nscp_api PROPERTIES
|
check_nscp_api PROPERTIES
|
||||||
INSTALL_RPATH ${CMAKE_INSTALL_FULL_LIBDIR}/icinga2
|
INSTALL_RPATH ${CMAKE_INSTALL_FULL_LIBDIR}/icinga2
|
||||||
|
@ -44,6 +44,10 @@ set(base_test_SOURCES
|
|||||||
icinga-notification.cpp
|
icinga-notification.cpp
|
||||||
icinga-perfdata.cpp
|
icinga-perfdata.cpp
|
||||||
remote-url.cpp
|
remote-url.cpp
|
||||||
|
$<TARGET_OBJECTS:base>
|
||||||
|
$<TARGET_OBJECTS:config>
|
||||||
|
$<TARGET_OBJECTS:remote>
|
||||||
|
$<TARGET_OBJECTS:icinga>
|
||||||
)
|
)
|
||||||
|
|
||||||
if(ICINGA2_UNITY_BUILD)
|
if(ICINGA2_UNITY_BUILD)
|
||||||
@ -52,6 +56,7 @@ endif()
|
|||||||
|
|
||||||
add_boost_test(base
|
add_boost_test(base
|
||||||
SOURCES test-runner.cpp ${base_test_SOURCES}
|
SOURCES test-runner.cpp ${base_test_SOURCES}
|
||||||
|
LIBRARIES ${base_DEPS}
|
||||||
TESTS base_array/construct
|
TESTS base_array/construct
|
||||||
base_array/getset
|
base_array/getset
|
||||||
base_array/resize
|
base_array/resize
|
||||||
@ -137,14 +142,16 @@ add_boost_test(base
|
|||||||
remote_url/illegal_legal_strings
|
remote_url/illegal_legal_strings
|
||||||
)
|
)
|
||||||
|
|
||||||
add_whole_static_library(${base_TARGET_NAME} base)
|
|
||||||
add_whole_static_library(${base_TARGET_NAME} config)
|
|
||||||
add_whole_static_library(${base_TARGET_NAME} icinga)
|
|
||||||
|
|
||||||
if(ICINGA2_WITH_LIVESTATUS)
|
if(ICINGA2_WITH_LIVESTATUS)
|
||||||
set(livestatus_test_SOURCES
|
set(livestatus_test_SOURCES
|
||||||
livestatus-fixture.cpp
|
livestatus-fixture.cpp
|
||||||
livestatus.cpp
|
livestatus.cpp
|
||||||
|
$<TARGET_OBJECTS:base>
|
||||||
|
$<TARGET_OBJECTS:config>
|
||||||
|
$<TARGET_OBJECTS:remote>
|
||||||
|
$<TARGET_OBJECTS:icinga>
|
||||||
|
$<TARGET_OBJECTS:livestatus>
|
||||||
|
$<TARGET_OBJECTS:methods>
|
||||||
)
|
)
|
||||||
|
|
||||||
if(ICINGA2_UNITY_BUILD)
|
if(ICINGA2_UNITY_BUILD)
|
||||||
@ -153,19 +160,19 @@ if(ICINGA2_WITH_LIVESTATUS)
|
|||||||
|
|
||||||
add_boost_test(livestatus
|
add_boost_test(livestatus
|
||||||
SOURCES test-runner.cpp ${livestatus_test_SOURCES}
|
SOURCES test-runner.cpp ${livestatus_test_SOURCES}
|
||||||
|
LIBRARIES ${base_DEPS}
|
||||||
TESTS livestatus/hosts livestatus/services
|
TESTS livestatus/hosts livestatus/services
|
||||||
)
|
)
|
||||||
|
|
||||||
add_whole_static_library(${livestatus_TARGET_NAME} base)
|
|
||||||
add_whole_static_library(${livestatus_TARGET_NAME} config)
|
|
||||||
add_whole_static_library(${livestatus_TARGET_NAME} icinga)
|
|
||||||
add_whole_static_library(${livestatus_TARGET_NAME} livestatus)
|
|
||||||
add_whole_static_library(${livestatus_TARGET_NAME} methods)
|
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
set(icinga_checkable_test_SOURCES
|
set(icinga_checkable_test_SOURCES
|
||||||
icinga-checkable-fixture.cpp
|
icinga-checkable-fixture.cpp
|
||||||
icinga-checkable-flapping.cpp
|
icinga-checkable-flapping.cpp
|
||||||
|
$<TARGET_OBJECTS:base>
|
||||||
|
$<TARGET_OBJECTS:config>
|
||||||
|
$<TARGET_OBJECTS:remote>
|
||||||
|
$<TARGET_OBJECTS:icinga>
|
||||||
|
$<TARGET_OBJECTS:cli>
|
||||||
)
|
)
|
||||||
|
|
||||||
if(ICINGA2_UNITY_BUILD)
|
if(ICINGA2_UNITY_BUILD)
|
||||||
@ -174,13 +181,9 @@ endif()
|
|||||||
|
|
||||||
add_boost_test(icinga_checkable
|
add_boost_test(icinga_checkable
|
||||||
SOURCES test-runner.cpp ${icinga_checkable_test_SOURCES}
|
SOURCES test-runner.cpp ${icinga_checkable_test_SOURCES}
|
||||||
|
LIBRARIES ${base_DEPS}
|
||||||
TESTS icinga_checkable_flapping/host_not_flapping
|
TESTS icinga_checkable_flapping/host_not_flapping
|
||||||
icinga_checkable_flapping/host_flapping
|
icinga_checkable_flapping/host_flapping
|
||||||
icinga_checkable_flapping/host_flapping_recover
|
icinga_checkable_flapping/host_flapping_recover
|
||||||
icinga_checkable_flapping/host_flapping_docs_example
|
icinga_checkable_flapping/host_flapping_docs_example
|
||||||
)
|
)
|
||||||
|
|
||||||
add_whole_static_library(${icinga_checkable_TARGET_NAME} base)
|
|
||||||
add_whole_static_library(${icinga_checkable_TARGET_NAME} config)
|
|
||||||
add_whole_static_library(${icinga_checkable_TARGET_NAME} icinga)
|
|
||||||
add_whole_static_library(${icinga_checkable_TARGET_NAME} cli)
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user