summaryrefslogtreecommitdiffstats
path: root/ConfigureChecks.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'ConfigureChecks.cmake')
-rw-r--r--ConfigureChecks.cmake17
1 files changed, 15 insertions, 2 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake
index 514020d..4ea1e39 100644
--- a/ConfigureChecks.cmake
+++ b/ConfigureChecks.cmake
@@ -13,11 +13,24 @@ macro( qt_message )
message( STATUS "${ARGN}" )
endmacro( )
+if( (WITH_QT3 OR USE_QT3) AND (WITH_QT4 OR USE_QT4) )
+ tde_message_fatal( "Options WITH_QT3 and WITH_QT4 are mutually exclusive." )
+endif( )
-if( DEFINED USE_QT3 )
+if( WITH_QT3 OR USE_QT3 )
set( QT_VERSION "3" )
-elseif( DEFINED USE_QT4 )
+elseif( WITH_QT4 OR USE_QT4 )
set( QT_VERSION "4" )
+ message( AUTHOR_WARNING
+ " ------------------------------------------------------------- \n"
+ " *** NOTE *** \n"
+ " \n"
+ " The code for the TQt interface based on Qt4 is not maintained \n"
+ " and the result can cause unexpected problems.\n"
+ " \n"
+ " It is not recommended to build a TQt interface based on Qt4!\n"
+ " ------------------------------------------------------------- \n"
+ )
endif()