1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- #
- # Log4Qt
- #
- superbuild_include_once()
- set(Log4Qt_enabling_variable Log4Qt_LIBRARIES)
- set(${Log4Qt_enabling_variable}_INCLUDE_DIRS Log4Qt_INCLUDE_DIRS)
- set(${Log4Qt_enabling_variable}_FIND_PACKAGE_CMD Log4Qt)
- set(Log4Qt_DEPENDENCIES "")
- ctkMacroCheckExternalProjectDependency(Log4Qt)
- set(proj Log4Qt)
- if(${CMAKE_PROJECT_NAME}_USE_SYSTEM_${proj})
- message(FATAL_ERROR "Enabling ${CMAKE_PROJECT_NAME}_USE_SYSTEM_${proj} is not supported !")
- endif()
- # Sanity checks
- if(DEFINED Log4Qt_DIR AND NOT EXISTS ${Log4Qt_DIR})
- message(FATAL_ERROR "Log4Qt_DIR variable is defined but corresponds to non-existing directory")
- endif()
- if(NOT DEFINED Log4Qt_DIR)
- set(revision_tag 8d3558b0f636cbf8ff83)
- if(${proj}_REVISION_TAG)
- set(revision_tag ${${proj}_REVISION_TAG})
- endif()
- set(location_args )
- if(${proj}_URL)
- set(location_args URL ${${proj}_URL})
- elseif(${proj}_GIT_REPOSITORY)
- set(location_args GIT_REPOSITORY ${${proj}_GIT_REPOSITORY}
- GIT_TAG ${revision_tag})
- else()
- set(location_args GIT_REPOSITORY "${git_protocol}://github.com/commontk/Log4Qt.git"
- GIT_TAG ${revision_tag})
- endif()
- ExternalProject_Add(${proj}
- SOURCE_DIR ${CMAKE_BINARY_DIR}/${proj}
- BINARY_DIR ${proj}-build
- PREFIX ${proj}${ep_suffix}
- ${location_args}
- CMAKE_GENERATOR ${gen}
- INSTALL_COMMAND ""
- UPDATE_COMMAND ""
- LIST_SEPARATOR ${sep}
- CMAKE_CACHE_ARGS
- ${ep_common_cache_args}
- -DQT_QMAKE_EXECUTABLE:FILEPATH=${QT_QMAKE_EXECUTABLE}
- DEPENDS
- ${${proj}_DEPENDENCIES}
- )
- set(Log4Qt_DIR ${CMAKE_BINARY_DIR}/${proj}-build)
- # Since Log4Qt is statically build, there is not need to add its corresponding
- # library output directory to CTK_EXTERNAL_LIBRARY_DIRS
- else()
- ctkMacroEmptyExternalproject(${proj} "${${proj}_DEPENDENCIES}")
- endif()
- list(APPEND CTK_SUPERBUILD_EP_VARS Log4Qt_DIR:PATH)
|