aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside2/PySide2/QtTextToSpeech/CMakeLists.txt
blob: 63b5a3669c746f2839051f72a4303c80ee36d781 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
project(QtTextToSpeech)

set(QtTextToSpeech_SRC
${QtTextToSpeech_GEN_DIR}/qtexttospeech_wrapper.cpp
${QtTextToSpeech_GEN_DIR}/qtexttospeechengine_wrapper.cpp
${QtTextToSpeech_GEN_DIR}/qvoice_wrapper.cpp
# module is always needed
${QtTextToSpeech_GEN_DIR}/qttexttospeech_module_wrapper.cpp
)

set(QtTextToSpeech_include_dirs ${QtTextToSpeech_SOURCE_DIR}
                                ${QtTextToSpeech_BINARY_DIR}
                                ${Qt5Core_INCLUDE_DIRS}
                                ${Qt5TextToSpeech_INCLUDE_DIRS}
                                ${SHIBOKEN_INCLUDE_DIR}
                                ${libpyside_SOURCE_DIR}
                                ${SHIBOKEN_PYTHON_INCLUDE_DIR}
                                ${QtCore_GEN_DIR})

set(QtTextToSpeech_libraries    pyside2
                                ${SHIBOKEN_PYTHON_LIBRARIES}
                                ${SHIBOKEN_LIBRARY}
                                ${Qt5Multimedia_LIBRARIES}
                                ${Qt5TextToSpeech_LIBRARIES}
                                ${Qt5Core_LIBRARIES})

set(QtTextToSpeech_deps QtCore QtMultimedia)

create_pyside_module(QtTextToSpeech
                     QtTextToSpeech_include_dirs
                     QtTextToSpeech_libraries
                     QtTextToSpeech_deps
                     QtTextToSpeech_SOURCE_DIR
                     QtTextToSpeech_SRC
                     "")