97 lines
3.2 KiB
Diff
97 lines
3.2 KiB
Diff
diff --git a/actexec/CMakeLists.txt b/actexec/CMakeLists.txt
|
|
index e7c1e38..bfa1a9c 100644
|
|
--- a/actexec/CMakeLists.txt
|
|
+++ b/actexec/CMakeLists.txt
|
|
@@ -41,7 +41,7 @@ endif()
|
|
|
|
setup_target(${PROJECT})
|
|
|
|
-find_package(Qt6 ${ACT_MINIMUM_QT_VERSION} COMPONENTS Qml Network Widgets Core5Compat Multimedia TextToSpeech REQUIRED)
|
|
+find_package(Qt6 ${ACT_MINIMUM_QT_VERSION} COMPONENTS Qml Network Widgets Core5Compat Multimedia REQUIRED)
|
|
|
|
target_link_directories(${PROJECT}
|
|
PRIVATE
|
|
@@ -76,7 +76,6 @@ target_link_libraries(
|
|
Qt6::Widgets
|
|
Qt6::Core5Compat
|
|
Qt6::Multimedia
|
|
- Qt6::TextToSpeech
|
|
${LIBNOTIFY_LIBRARIES}
|
|
)
|
|
|
|
diff --git a/actiona/CMakeLists.txt b/actiona/CMakeLists.txt
|
|
index fe9e49c..922bec2 100644
|
|
--- a/actiona/CMakeLists.txt
|
|
+++ b/actiona/CMakeLists.txt
|
|
@@ -126,7 +126,7 @@ endif()
|
|
|
|
setup_target(${PROJECT})
|
|
|
|
-find_package(Qt6 ${ACT_MINIMUM_QT_VERSION} COMPONENTS Qml Network Widgets Core5Compat Multimedia TextToSpeech REQUIRED)
|
|
+find_package(Qt6 ${ACT_MINIMUM_QT_VERSION} COMPONENTS Qml Network Widgets Core5Compat Multimedia REQUIRED)
|
|
|
|
target_link_directories(${PROJECT}
|
|
PRIVATE
|
|
@@ -163,7 +163,6 @@ target_link_libraries(
|
|
Qt6::Widgets
|
|
Qt6::Core5Compat
|
|
Qt6::Multimedia
|
|
- Qt6::TextToSpeech
|
|
${LIBNOTIFY_LIBRARIES}
|
|
${LIBX11_LIBRARIES}
|
|
$<$<PLATFORM_ID:Windows>:shlwapi>
|
|
diff --git a/actions/system/CMakeLists.txt b/actions/system/CMakeLists.txt
|
|
index cf99ca9..90949db 100644
|
|
--- a/actions/system/CMakeLists.txt
|
|
+++ b/actions/system/CMakeLists.txt
|
|
@@ -67,8 +67,6 @@ set(HEADERS
|
|
${HEADERS_PREFIX}/actions/playsoundinstance.hpp
|
|
${HEADERS_PREFIX}/actions/systemdefinition.hpp
|
|
${HEADERS_PREFIX}/actions/systeminstance.hpp
|
|
- ${HEADERS_PREFIX}/actions/texttospeechdefinition.hpp
|
|
- ${HEADERS_PREFIX}/actions/texttospeechinstance.hpp
|
|
${HEADERS_PREFIX}/code/mediaplayer.hpp
|
|
${HEADERS_PREFIX}/code/notify.hpp
|
|
${HEADERS_PREFIX}/code/process.hpp
|
|
@@ -141,7 +139,6 @@ find_package(Qt6 ${ACT_MINIMUM_QT_VERSION} COMPONENTS
|
|
DBus
|
|
Multimedia
|
|
MultimediaWidgets
|
|
- TextToSpeech
|
|
REQUIRED)
|
|
|
|
target_link_directories(${PROJECT}
|
|
@@ -168,7 +165,6 @@ target_link_libraries(${PROJECT}
|
|
Qt6::DBus
|
|
Qt6::Multimedia
|
|
Qt6::MultimediaWidgets
|
|
- Qt6::TextToSpeech
|
|
${LIBNOTIFY_LIBRARIES}
|
|
${BLUEZ_LIBRARIES}
|
|
$<$<PLATFORM_ID:Windows>:Advapi32>
|
|
diff --git a/actions/system/src/actionpacksystem.hpp b/actions/system/src/actionpacksystem.hpp
|
|
index 9214c00..3b13ea1 100644
|
|
--- a/actions/system/src/actionpacksystem.hpp
|
|
+++ b/actions/system/src/actionpacksystem.hpp
|
|
@@ -32,10 +32,6 @@
|
|
#include "actions/playsounddefinition.hpp"
|
|
#include "actions/findimagedefinition.hpp"
|
|
|
|
-#if QT_VERSION >= QT_VERSION_CHECK(5, 10, 0)
|
|
-#include "actions/texttospeechdefinition.hpp"
|
|
-#endif
|
|
-
|
|
#include "code/system.hpp"
|
|
#include "code/mediaplayer.hpp"
|
|
#include "code/notify.hpp"
|
|
@@ -64,9 +60,6 @@ public:
|
|
addActionDefinition(new Actions::DetachedCommandDefinition(this));
|
|
addActionDefinition(new Actions::PlaySoundDefinition(this));
|
|
addActionDefinition(new Actions::FindImageDefinition(this));
|
|
-#if QT_VERSION >= QT_VERSION_CHECK(5, 10, 0)
|
|
- addActionDefinition(new Actions::TextToSpeechDefinition(this));
|
|
-#endif
|
|
}
|
|
|
|
QString id() const override { return QStringLiteral("system"); }
|