diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-04-13 12:57:12 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-04-13 12:57:12 +0900 |
commit | 658a06d1ee76b6e7c0d304147d3e85dbd87f9e7b (patch) | |
tree | d5e97ff83fa1f6aa60b757c7040c50ac0b3d87d1 /ConfigureChecks.cmake | |
parent | 64dc8cad728f6680166df0aa7b6ba797e1aa0c2b (diff) | |
download | universal-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.cmake | 6 |
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( ) |