diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-10-08 13:05:13 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-10-08 13:05:13 +0900 |
commit | 6d11f6b351b77d1c9644630cfcaa2c3ce63998d5 (patch) | |
tree | c6e2a465e4fc0432746338c9a7e1d6f763161324 /ConfigureChecks.cmake | |
parent | cdf40894ad783e220dc6cf4b012e429f191ba5f7 (diff) | |
download | tqtinterface-6d11f6b351b77d1c9644630cfcaa2c3ce63998d5.tar.gz tqtinterface-6d11f6b351b77d1c9644630cfcaa2c3ce63998d5.zip |
Remove tmoc
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'ConfigureChecks.cmake')
-rw-r--r-- | ConfigureChecks.cmake | 37 |
1 files changed, 2 insertions, 35 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake index a3bba25..2bb25d9 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -72,48 +72,15 @@ endif( ) qt_message( " QT_BINARY_DIR : ${QT_BINARY_DIR}" ) -# find moc -if( DEFINED MOC_EXECUTABLE ) - if( IS_DIRECTORY "${MOC_EXECUTABLE}" OR NOT EXISTS "${MOC_EXECUTABLE}" ) - tde_message_fatal( "moc was NOT found.\n MOC_EXECUTABLE may not be set correctly." ) - endif( ) -else( ) - find_program( MOC_EXECUTABLE NAMES tqmoc moc-qt3 moc HINTS "${QT_BINARY_DIR}" ) - if( NOT MOC_EXECUTABLE ) - tde_message_fatal( "moc was NOT found.\n Please check if your Qt${QT_VERSION} is correctly installed." ) - endif( ) -endif( ) - -# attempt to run moc, to check which qt version is using -execute_process( COMMAND ${MOC_EXECUTABLE} -v ERROR_VARIABLE __output - RESULT_VARIABLE __result ERROR_STRIP_TRAILING_WHITESPACE ) - -if( __result EQUAL 1 ) - string( REGEX MATCH "^.*Qt (.+)\\)$" __dummy "${__output}" ) - set( __version "${CMAKE_MATCH_1}" ) - if( NOT __version ) - tde_message_fatal( "Invalid response from moc:\n ${__output}" ) - endif( ) -else( ) - tde_message_fatal( "Unable to run moc!\n Qt${VERSION} are correctly installed?\n LD_LIBRARY_PATH are correctly set?" ) -endif( ) - -qt_message( " MOC_EXECUTABLE: ${MOC_EXECUTABLE} (using Qt ${CMAKE_MATCH_1})" ) - -if( QT_VERSION STREQUAL "3" AND NOT "${CMAKE_MATCH_1}" VERSION_LESS "4" ) - tde_message_fatal( "Strange, you want TQt3, but your moc using Qt>=4." ) -endif( ) - - # find uic (only for Qt3) if( DEFINED UIC_EXECUTABLE ) if( IS_DIRECTORY "${UIC_EXECUTABLE}" OR NOT EXISTS "${UIC_EXECUTABLE}" ) - tde_message_fatal( "uic was NOT found.\n MOC_EXECUTABLE may not be set correctly" ) + tde_message_fatal( "uic was NOT found.\n Please make sure TQt is correctly installed (1)." ) endif( ) else( ) find_program( UIC_EXECUTABLE NAMES tquic uic-qt3 uic HINTS "${QT_BINARY_DIR}" ) if( NOT UIC_EXECUTABLE ) - tde_message_fatal( "uic was NOT found.\n Please check if your Qt${QT_VERSION} is correctly installed." ) + tde_message_fatal( "uic was NOT found.\n Please make sure TQt is correctly installed (2)." ) endif( ) endif( ) qt_message( " UIC_EXECUTABLE: ${UIC_EXECUTABLE}" ) |