summaryrefslogtreecommitdiffstats
path: root/src/plugins/tts/sapi/CMakeLists.txt
blob: 8a3fe2cec543a4cd01abd79c308e424e4ce15c9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
qt_internal_add_plugin(QTextToSpeechSapiPlugin
    OUTPUT_NAME qtexttospeech_sapi
    PLUGIN_TYPE texttospeech
    SOURCES
        qtexttospeech_sapi.cpp qtexttospeech_sapi.h
        qtexttospeech_sapi_plugin.cpp qtexttospeech_sapi_plugin.h
    LIBRARIES
        Qt::Core
        Qt::Gui
        Qt::TextToSpeech
)

qt_internal_extend_target(QTextToSpeechSapiPlugin CONDITION MSVC
    COMPILE_OPTIONS
        /Zc:strictStrings
)

qt_internal_extend_target(QTextToSpeechSapiPlugin CONDITION MINGW
    LIBRARIES
        ole32
        sapi
        uuid
)