QtSOAP.cmake 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. #
  2. # QtSOAP
  3. #
  4. superbuild_include_once()
  5. set(QtSOAP_enabling_variable QtSOAP_LIBRARIES)
  6. set(${QtSOAP_enabling_variable}_LIBRARY_DIRS QtSOAP_LIBRARY_DIRS)
  7. set(${QtSOAP_enabling_variable}_INCLUDE_DIRS QtSOAP_INCLUDE_DIRS)
  8. set(${QtSOAP_enabling_variable}_FIND_PACKAGE_CMD QtSOAP)
  9. set(QtSOAP_DEPENDENCIES "")
  10. superbuild_include_dependencies(QtSOAP)
  11. set(proj QtSOAP)
  12. if(${CMAKE_PROJECT_NAME}_USE_SYSTEM_${proj})
  13. message(FATAL_ERROR "Enabling ${CMAKE_PROJECT_NAME}_USE_SYSTEM_${proj} is not supported !")
  14. endif()
  15. # Sanity checks
  16. if(DEFINED QtSOAP_DIR AND NOT EXISTS ${QtSOAP_DIR})
  17. message(FATAL_ERROR "QtSOAP_DIR variable is defined but corresponds to non-existing directory")
  18. endif()
  19. if(NOT DEFINED QtSOAP_DIR)
  20. set(revision_tag 3e49f7a4a1a684779eb66215bad46140d9153731)
  21. if(${proj}_REVISION_TAG)
  22. set(revision_tag ${${proj}_REVISION_TAG})
  23. endif()
  24. set(location_args )
  25. if(${proj}_URL)
  26. set(location_args URL ${${proj}_URL})
  27. elseif(${proj}_GIT_REPOSITORY)
  28. set(location_args GIT_REPOSITORY ${${proj}_GIT_REPOSITORY}
  29. GIT_TAG ${revision_tag})
  30. else()
  31. set(location_args GIT_REPOSITORY "${git_protocol}://github.com/commontk/QtSOAP.git"
  32. GIT_TAG ${revision_tag})
  33. endif()
  34. ExternalProject_Add(${proj}
  35. ${${proj}_EXTERNAL_PROJECT_ARGS}
  36. SOURCE_DIR ${CMAKE_BINARY_DIR}/${proj}
  37. BINARY_DIR ${proj}-build
  38. PREFIX ${proj}${ep_suffix}
  39. ${location_args}
  40. CMAKE_GENERATOR ${gen}
  41. UPDATE_COMMAND ""
  42. INSTALL_COMMAND ""
  43. LIST_SEPARATOR ${sep}
  44. CMAKE_CACHE_ARGS
  45. ${ep_common_cache_args}
  46. -DCMAKE_RUNTIME_OUTPUT_DIRECTORY:STRING=${CTK_CMAKE_RUNTIME_OUTPUT_DIRECTORY}
  47. -DQT_QMAKE_EXECUTABLE:FILEPATH=${QT_QMAKE_EXECUTABLE}
  48. DEPENDS
  49. ${${proj}_DEPENDENCIES}
  50. )
  51. set(QtSOAP_DIR "${CMAKE_BINARY_DIR}/${proj}-build")
  52. # Since the QtSOAP dll is created directly in CTK-build/bin, there is not need to add a
  53. # library output directory to CTK_EXTERNAL_LIBRARY_DIRS
  54. else()
  55. superbuild_add_empty_external_project(${proj} "${${proj}_DEPENDENCIES}")
  56. endif()
  57. mark_as_superbuild(
  58. VARS QtSOAP_DIR:PATH
  59. LABELS "FIND_PACKAGE"
  60. )