1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
set (qt5debugappender_sources
qt5debugappender.cxx)
find_package (Qt5Core REQUIRED)
#include (${QT_USE_FILE})
set (qt5debugappender log4cplusqt5debugappender${log4cplus_postfix})
add_library (${qt5debugappender} ${qt5debugappender_sources})
add_library (log4cplus::qt5debugappender ALIAS ${qt5debugappender})
if (UNICODE)
target_compile_definitions (${qt5debugappender} PUBLIC UNICODE)
target_compile_definitions (${qt5debugappender} PUBLIC _UNICODE)
add_definitions (-UMBCS -U_MBCS)
endif (UNICODE)
if (${BUILD_SHARED_LIBS})
target_compile_definitions (${qt5debugappender} PRIVATE ${log4cplus}_EXPORTS)
endif ()
target_link_libraries (${qt5debugappender}
${log4cplus}
${Qt5Widgets_LIBRARIES}
${CMAKE_THREAD_LIBS_INIT})
if (ANDROID)
# Android does not seem to have SO version support.
elseif (WIN32)
set_target_properties (${qt5debugappender} PROPERTIES
VERSION "${log4cplus_version_major}.${log4cplus_version_minor}.${log4cplus_version_patch}")
else ()
set_target_properties (${qt5debugappender} PROPERTIES
SOVERSION "${log4cplus_soversion}")
endif ()
target_compile_definitions (${qt5debugappender} PRIVATE INSIDE_LOG4CPLUS_QT5DEBUGAPPENDER)
if (APPLE)
set_target_properties (${log4cplus} PROPERTIES
MACHO_CURRENT_VERSION "${log4cplus_macho_current_version}"
MACHO_COMPATIBILITY_VERSION "${log4cplus_macho_compatibility_version}")
endif ()
qt5_use_modules(${qt5debugappender} Core)
if (WIN32)
set_target_properties (${qt5debugappender} PROPERTIES
DEBUG_POSTFIX "D")
endif ()
install (TARGETS ${qt5debugappender}
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
install (FILES ../include/log4cplus/qt5debugappender.h
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/log4cplus)
|