# # qxmlrpc # ctkMacroShouldAddExternalproject(qxmlrpc_LIBRARY add_project) if(${add_project}) # Sanity checks if(DEFINED qxmlrpc_DIR AND NOT EXISTS ${qxmlrpc_DIR}) message(FATAL_ERROR "qxmlrpc_DIR variable is defined but corresponds to non-existing directory") endif() set(qxmlrpc_enabling_variable qxmlrpc_LIBRARY) set(proj qxmlrpc) set(proj_DEPENDENCIES) list(APPEND CTK_DEPENDENCIES ${proj}) set(${qxmlrpc_enabling_variable}_LIBRARY_DIRS qxmlrpc_LIBRARY_DIRS) set(${qxmlrpc_enabling_variable}_INCLUDE_DIRS qxmlrpc_INCLUDE_DIRS) set(${qxmlrpc_enabling_variable}_FIND_PACKAGE_CMD qxmlrpc) if(CTK_SUPERBUILD) if(NOT DEFINED qxmlrpc_DIR) set(location_args ) if(${proj}_URL) set(location_args URL ${${proj}_URL}) elseif(${proj}_GIT_REPOSITORY) set(location_args GIT_REPOSITORY ${${proj}_GIT_REPOSITORY}) if(${proj}_REVISION_TAG) list(APPEND location_args GIT_TAG ${${proj}_REVISION_TAG}) endif() else() set(location_args GIT_REPOSITORY "${git_protocol}://github.com/commontk/qxmlrpc.git" GIT_TAG "origin/patched") endif() #message(STATUS "Adding project:${proj}") ExternalProject_Add(${proj} SOURCE_DIR ${CMAKE_BINARY_DIR}/${proj} BINARY_DIR ${proj}-build PREFIX ${proj}${ep_suffix} ${location_args} CMAKE_GENERATOR ${gen} INSTALL_COMMAND "" CMAKE_ARGS ${ep_common_cache_args} -DQT_QMAKE_EXECUTABLE:FILEPATH=${QT_QMAKE_EXECUTABLE} DEPENDS ${proj_DEPENDENCIES} ) set(qxmlrpc_DIR "${CMAKE_BINARY_DIR}/${proj}-build") # Since qxmlrpc 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 qxmlrpc_DIR:PATH) endif() endif()