blob: dfa3db080edeae69c3ca38499f6cea8667616696 (
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
|
From 1c9ec4743e8e86def01ce22452ebe203bbd2d7a0 Mon Sep 17 00:00:00 2001
From: Martchus <martchus@gmx.net>
Date: Wed, 9 Jun 2021 17:25:27 +0200
Subject: [PATCH] Enable only SQL plugins which are known to work
Change-Id: I0abc44db77cecbd323edc936529fb557e1664de8
---
src/assistant/assistant/CMakeLists.txt | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/src/assistant/assistant/CMakeLists.txt b/src/assistant/assistant/CMakeLists.txt
index 38e79ca8c..872d80870 100644
--- a/src/assistant/assistant/CMakeLists.txt
+++ b/src/assistant/assistant/CMakeLists.txt
@@ -163,6 +163,14 @@ qt_internal_extend_target(assistant CONDITION UNIX
stdinlistener.cpp stdinlistener.h
)
+if(MINGW)
+ # enable only SQL plugins which are known to work
+ # note: The static plugins for MySQL/PostgreSQL don't work because these libs come with their
+ # own pthread implementation which has conflicting symbols with the normal pthread library
+ # leading to linker errors.
+ qt_import_plugins(assistant INCLUDE_BY_TYPE sqldrivers Qt6::QSQLiteDriverPlugin Qt6::QODBCDriverPlugin)
+endif()
+
if(APPLE)
set_target_properties(assistant PROPERTIES
MACOSX_BUNDLE_INFO_PLIST "${CMAKE_CURRENT_SOURCE_DIR}/Info_mac.plist"
--
2.49.0
|