Warning, /libraries/ktextaddons/textspeechtotext/speechtotext/plugins/google/CMakeLists.txt is written in an unsupported language. File is not indexed.
0001 # SPDX-License-Identifier: BSD-3-Clause 0002 # SPDX-FileCopyrightText: 2023-2024 Laurent Montel <montel.org> 0003 add_library(speechtotext_google MODULE) 0004 0005 ecm_qt_declare_logging_category(speechtotext_google 0006 HEADER speechtotext_google_debug.h 0007 IDENTIFIER SPEECHTOTEXT_GOOGLE_LOG 0008 CATEGORY_NAME org.kde.kf.speechtotext.google 0009 DESCRIPTION "google speechtotext" 0010 EXPORT KTEXTADDONS 0011 ) 0012 target_sources(speechtotext_google PRIVATE 0013 googlespeechtotextclient.h 0014 googlespeechtotextclient.cpp 0015 0016 googlespeechtotextplugin.h 0017 googlespeechtotextplugin.cpp 0018 0019 googlespeechtotextpluginjob.h 0020 googlespeechtotextpluginjob.cpp 0021 ) 0022 0023 target_link_libraries(speechtotext_google PRIVATE KF${KF_MAJOR_VERSION}::TextSpeechToText KF${KF_MAJOR_VERSION}::I18n) 0024 0025 install(TARGETS speechtotext_google DESTINATION ${KDE_INSTALL_PLUGINDIR}/kf${QT_MAJOR_VERSION}/speechtotext/)