summaryrefslogtreecommitdiffstats
path: root/ConfigureChecks.cmake
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-04-13 12:57:12 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-04-13 12:57:12 +0900
commit658a06d1ee76b6e7c0d304147d3e85dbd87f9e7b (patch)
treed5e97ff83fa1f6aa60b757c7040c50ac0b3d87d1 /ConfigureChecks.cmake
parent64dc8cad728f6680166df0aa7b6ba797e1aa0c2b (diff)
downloaduniversal-indent-gui-tqt-658a06d1ee76b6e7c0d304147d3e85dbd87f9e7b.tar.gz
universal-indent-gui-tqt-658a06d1ee76b6e7c0d304147d3e85dbd87f9e7b.zip
Initialize TQScintilla's editor. TabWidth settings is now saved and restored across executions
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'ConfigureChecks.cmake')
-rw-r--r--ConfigureChecks.cmake6
1 files changed, 6 insertions, 0 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake
index 0f733c0..253fd69 100644
--- a/ConfigureChecks.cmake
+++ b/ConfigureChecks.cmake
@@ -54,3 +54,9 @@ check_cxx_source_compiles(
if( NOT HAVE_SSTREAM AND NOT HAVE_STRSTREAM )
message(FATAL_ERROR "\nsstream or strstream support is required, but not found on your system." )
endif( )
+
+# check for tqscintilla
+pkg_search_module( TQSCINTILLA tqscintilla )
+if( NOT TQSCINTILLA_FOUND )
+ tde_message_fatal( "tqscintilla is required, but was not found on your system" )
+endif( )