summaryrefslogtreecommitdiffstats
path: root/kword/ConfigureChecks.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'kword/ConfigureChecks.cmake')
-rw-r--r--kword/ConfigureChecks.cmake18
1 files changed, 18 insertions, 0 deletions
diff --git a/kword/ConfigureChecks.cmake b/kword/ConfigureChecks.cmake
new file mode 100644
index 000000000..cf79731ff
--- /dev/null
+++ b/kword/ConfigureChecks.cmake
@@ -0,0 +1,18 @@
+###############################################################################
+# Trinity KOffice #
+# --------------- #
+# This file is licensed under the terms of GNU GPL v3 or later. #
+# Improvements and feedback are welcome. #
+###############################################################################
+
+check_cxx_source_compiles("
+#include <tqglobal.h>
+#ifdef TQT_NO_SQL
+# error \"No TQt-SQL support\"
+#endif
+" HAS_TQT_SQL)
+
+if (NOT HAS_TQT_SQL)
+ message(WARNING "TQt-SQL support is not installed, the KWord MailMerge dialog "
+ "will be compiled without SQL source support.")
+endif() \ No newline at end of file