| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 | ## PythonQtGenerator#SET(PythonQtGenerator_DEPENDS)IF(CTK_WRAP_PYTHONQT_FULL)  # Sanity checks  IF(DEFINED PYTHONQTGENERATOR_EXECUTABLE AND NOT EXISTS ${PYTHONQTGENERATOR_EXECUTABLE})    MESSAGE(FATAL_ERROR "PYTHONQTGENERATOR_EXECUTABLE variable is defined but corresponds to non-existing executable")  ENDIF()  IF(NOT DEFINED PYTHONQTGENERATOR_EXECUTABLE)    # Set CMake OSX variable to pass down the external project    set(CMAKE_OSX_EXTERNAL_PROJECT_ARGS)    if(APPLE)      list(APPEND CMAKE_OSX_EXTERNAL_PROJECT_ARGS        -DCMAKE_OSX_ARCHITECTURES=${CMAKE_OSX_ARCHITECTURES}        -DCMAKE_OSX_SYSROOT=${CMAKE_OSX_SYSROOT}        -DCMAKE_OSX_DEPLOYMENT_TARGET=${CMAKE_OSX_DEPLOYMENT_TARGET})    endif()    #    # PythonQtGenerator is the tool allowing to generate the PythonQt decorators using    # typesystem xml files. If called without any option, it will generate the bindings for Qt.    #    # See http://www.pyside.org/docs/apiextractor/typesystem.html    # See http://doc.trolltech.com/qtjambi-4.5.2_01/com/trolltech/qt/qtjambi-typesystem.html    # See http://qt.gitorious.org/qt-labs/qtscriptgenerator    #    SET(proj PythonQtGenerator)  #   MESSAGE(STATUS "Adding project:${proj}")    SET(PythonQtGenerator_DEPENDS ${proj})    #    # If directory PythonQt already exists, the corresponding project will    # be cloned. Since PythonQt and PythonQtGenerator source code are hosted    # on the same repository, we will assume that if the directory PythonQt    # exists, the generator code will also be available.    #    IF(EXISTS ${CMAKE_BINARY_DIR}/PythonQt)      #MESSAGE(STATUS "ExternalProject/PythonQtGenerator: PythonQt already added as ExternalProject")      ExternalProject_Add(${proj}        SOURCE_DIR ${CMAKE_BINARY_DIR}/PythonQt/generator        BINARY_DIR ${proj}-build        PREFIX ${proj}${ep_suffix}        DOWNLOAD_COMMAND ""        CMAKE_GENERATOR ${gen}        INSTALL_COMMAND ""        CMAKE_ARGS          -DCMAKE_BUILD_TYPE:STRING=${CMAKE_BUILD_TYPE}          -DCMAKE_CXX_FLAGS:STRING=${ep_common_cxx_flags}          -DCMAKE_C_FLAGS:STRING=${ep_common_c_flags}          -DCMAKE_INSTALL_PREFIX:PATH=${ep_install_dir}          ${CMAKE_OSX_EXTERNAL_PROJECT_ARGS}          -DQT_QMAKE_EXECUTABLE:FILEPATH=${QT_QMAKE_EXECUTABLE}        DEPENDS          "PythonQt" # To make sure the generator code is checked out, let's depend on PythonQt        )    ELSE()      SET(revision_tag 3171a94e16ba9bfee137)      IF(${proj}_REVISION_TAG)        SET(revision_tag ${${proj}_REVISION_TAG})      ENDIF()      #MESSAGE(STATUS "ExternalProject/PythonQtGenerator: PythonQt is NOT an ExternalProject")      ExternalProject_Add(${proj}        SOURCE_DIR ${CMAKE_BINARY_DIR}/${proj}        BINARY_DIR ${proj}-build        PREFIX ${proj}${ep_suffix}        GIT_REPOSITORY "${git_protocol}://github.com/commontk/PythonQt.git"        GIT_TAG 3171a94e16ba9bfee137        CMAKE_GENERATOR ${gen}        UPDATE_COMMAND ""        INSTALL_COMMAND ""        CMAKE_ARGS          -DCMAKE_BUILD_TYPE:STRING=${CMAKE_BUILD_TYPE}          -DCMAKE_CXX_FLAGS:STRING=${ep_common_cxx_flags}          -DCMAKE_C_FLAGS:STRING=${ep_common_c_flags}          -DCMAKE_INSTALL_PREFIX:PATH=${ep_install_dir}          ${CMAKE_OSX_EXTERNAL_PROJECT_ARGS}          -DQT_QMAKE_EXECUTABLE:FILEPATH=${QT_QMAKE_EXECUTABLE}        )    ENDIF()    SET(PYTHONQTGENERATOR_EXECUTABLE ${CMAKE_BINARY_DIR}/PythonQtGenerator-build/PythonQtGenerator)    # Since PythonQtGenerator is an executable, there is no need to add its corresponding    # library output directory to CTK_EXTERNAL_LIBRARY_DIRS  ENDIF()  LIST(APPEND CTK_SUPERBUILD_EP_VARS PYTHONQTGENERATOR_EXECUTABLE:FILEPATH)ENDIF()
 |