blob: dfabbafa67ffe08be09fcb3eba07e3db9d5c506e [file] [log] [blame]
add_subdirectory(main)
target_compile_definitions(log4cxx PRIVATE ${LOG4CXX_COMPILE_DEFINITIONS} ${APR_COMPILE_DEFINITIONS} ${APR_UTIL_COMPILE_DEFINITIONS} )
target_include_directories(log4cxx INTERFACE $<INSTALL_INTERFACE:include> PRIVATE ${APR_INCLUDE_DIR} ${APR_UTIL_INCLUDE_DIR})
target_link_libraries(log4cxx PRIVATE ${APR_UTIL_LIBRARIES} EXPAT::EXPAT ${APR_LIBRARIES} ${APR_SYSTEM_LIBS})
if(WIN32)
# The ODBC appender is always enabled in the Windows configuration
cmake_policy(SET CMP0079 NEW)
target_link_libraries(log4cxx PRIVATE odbc32.lib)
option(LOG4CXX_INSTALL_PDB "Install .pdb files (if generated)" ON)
endif()
if(BUILD_TESTING)
add_subdirectory(test)
add_subdirectory(examples/cpp)
endif()
option(BUILD_SITE "Build log4cxx website" OFF)
if(BUILD_SITE)
find_package( Doxygen REQUIRED dot )
configure_file( ${CMAKE_CURRENT_SOURCE_DIR}/site/doxy/Doxyfile.in
${CMAKE_CURRENT_BINARY_DIR}/site/Doxyfile )
configure_file( ${CMAKE_CURRENT_SOURCE_DIR}/site/markdown/download.md.in
${CMAKE_CURRENT_BINARY_DIR}/site/markdown/download.md )
add_custom_target( doc_doxygen ALL
COMMAND ${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/site/Doxyfile
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
COMMENT "Generate site with Doxygen"
VERBATIM )
endif()