Warning, /libraries/ktextaddons/textspeechtotext/speechtotext/plugins/whisper/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_whisper MODULE) 0004 0005 ecm_qt_declare_logging_category(speechtotext_whisper 0006 HEADER speechtotext_whisper_debug.h 0007 IDENTIFIER SPEECHTOTEXT_WHISPER_LOG 0008 CATEGORY_NAME org.kde.kf.speechtotext.whisper 0009 DESCRIPTION "whisper speechtotext" 0010 EXPORT KTEXTADDONS 0011 ) 0012 target_sources(speechtotext_whisper PRIVATE 0013 whisperspeechtotextclient.h 0014 whisperspeechtotextclient.cpp 0015 0016 whisperspeechtotextplugin.h 0017 whisperspeechtotextplugin.cpp 0018 0019 whisperspeechtotextpluginjob.h 0020 whisperspeechtotextpluginjob.cpp 0021 ) 0022 0023 target_link_libraries(speechtotext_whisper PRIVATE KF${KF_MAJOR_VERSION}::TextSpeechToText KF${KF_MAJOR_VERSION}::I18n) 0024 0025 install(TARGETS speechtotext_whisper DESTINATION ${KDE_INSTALL_PLUGINDIR}/kf${QT_MAJOR_VERSION}/speechtotext/)