aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside2/PySide2/QtScxml/CMakeLists.txt
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2020-11-02 16:11:52 +0100
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2020-11-02 16:12:04 +0000
commit25180730194bec25f915f32ab846ea583fb1493f (patch)
tree9a73e0336ecf21e085d99d6a651c5547b9eb99f8 /sources/pyside2/PySide2/QtScxml/CMakeLists.txt
parent6e3e7b9ca0548430aaa5e2555d6e02c64625fa3f (diff)
Rename PySide2 to PySide6
Adapt CMake files, build scripts, tests and examples. Task-number: PYSIDE-904 Change-Id: I845f7b006e9ad274fed5444ec4c1f9dbe176ff88 Reviewed-by: Christian Tismer <tismer@stackless.com>
Diffstat (limited to 'sources/pyside2/PySide2/QtScxml/CMakeLists.txt')
-rw-r--r--sources/pyside2/PySide2/QtScxml/CMakeLists.txt55
1 files changed, 0 insertions, 55 deletions
diff --git a/sources/pyside2/PySide2/QtScxml/CMakeLists.txt b/sources/pyside2/PySide2/QtScxml/CMakeLists.txt
deleted file mode 100644
index 732253bba..000000000
--- a/sources/pyside2/PySide2/QtScxml/CMakeLists.txt
+++ /dev/null
@@ -1,55 +0,0 @@
-project(QtScxml)
-
-set(QtScxml_OPTIONAL_SRC )
-set(QtScxml_DROPPED_ENTRIES )
-
-set(QtScxml_SRC
-${QtScxml_GEN_DIR}/qscxmlcompiler_wrapper.cpp
-${QtScxml_GEN_DIR}/qscxmlcompiler_loader_wrapper.cpp
-${QtScxml_GEN_DIR}/qscxmlevent_wrapper.cpp
-${QtScxml_GEN_DIR}/qscxmldynamicscxmlservicefactory_wrapper.cpp
-${QtScxml_GEN_DIR}/qscxmlinvokableservice_wrapper.cpp
-${QtScxml_GEN_DIR}/qscxmlinvokableservicefactory_wrapper.cpp
-${QtScxml_GEN_DIR}/qscxmlstaticscxmlservicefactory_wrapper.cpp
-${QtScxml_GEN_DIR}/qscxmlstatemachine_wrapper.cpp
-${QtScxml_GEN_DIR}/qscxmltabledata_wrapper.cpp
-${QtScxml_GEN_DIR}/qscxmlerror_wrapper.cpp
-${QtScxml_GEN_DIR}/qscxmlexecutablecontent_wrapper.cpp
-${QtScxml_GEN_DIR}/qscxmlexecutablecontent_assignmentinfo_wrapper.cpp
-${QtScxml_GEN_DIR}/qscxmlexecutablecontent_evaluatorinfo_wrapper.cpp
-${QtScxml_GEN_DIR}/qscxmlexecutablecontent_foreachinfo_wrapper.cpp
-${QtScxml_GEN_DIR}/qscxmlexecutablecontent_invokeinfo_wrapper.cpp
-${QtScxml_GEN_DIR}/qscxmlexecutablecontent_parameterinfo_wrapper.cpp
-# module is always needed
-${QtScxml_GEN_DIR}/qtscxml_module_wrapper.cpp
-)
-
-if (Qt${QT_MAJOR_VERSION}Scxml_VERSION VERSION_EQUAL 5.12.0
- OR Qt${QT_MAJOR_VERSION}Scxml_VERSION VERSION_GREATER 5.12.0)
- list(APPEND QtScxml_SRC
- ${QtScxml_GEN_DIR}/qscxmldatamodel_wrapper.cpp
- ${QtScxml_GEN_DIR}/qscxmldatamodel_foreachloopbody_wrapper.cpp
- ${QtScxml_GEN_DIR}/qscxmlecmascriptdatamodel_wrapper.cpp
- ${QtScxml_GEN_DIR}/qscxmlcppdatamodel_wrapper.cpp
- ${QtScxml_GEN_DIR}/qscxmlnulldatamodel_wrapper.cpp)
-endif()
-
-set(QtScxml_include_dirs ${QtScxml_SOURCE_DIR}
- ${QtScxml_BINARY_DIR}
- ${Qt${QT_MAJOR_VERSION}Core_INCLUDE_DIRS}
- ${Qt${QT_MAJOR_VERSION}Scxml_INCLUDE_DIRS}
- ${libpyside_SOURCE_DIR}
- ${QtCore_GEN_DIR})
-
-set(QtScxml_libraries pyside2
- ${Qt${QT_MAJOR_VERSION}Scxml_LIBRARIES})
-
-set(QtScxml_deps QtCore)
-
-create_pyside_module(NAME QtScxml
- INCLUDE_DIRS QtScxml_include_dirs
- LIBRARIES QtScxml_libraries
- DEPS QtScxml_deps
- TYPESYSTEM_PATH QtScxml_SOURCE_DIR
- SOURCES QtScxml_SRC
- DROPPED_ENTRIES QtScxml_DROPPED_ENTRIES)