summaryrefslogtreecommitdiffstats
path: root/modules/FindTQt.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'modules/FindTQt.cmake')
-rw-r--r--modules/FindTQt.cmake24
1 files changed, 7 insertions, 17 deletions
diff --git a/modules/FindTQt.cmake b/modules/FindTQt.cmake
index 1c640fc..8f75c8b 100644
--- a/modules/FindTQt.cmake
+++ b/modules/FindTQt.cmake
@@ -20,30 +20,20 @@ if( NOT TQT_FOUND )
tde_message_fatal( "Unable to find tqt!\n Try adding the directory in which the tqt.pc file is located\nto the PKG_CONFIG_PATH variable." )
endif( )
- mark_as_advanced(
- UIC_EXECUTABLE
- )
-
- # tqmoc_executable
+ # tqmoc executable
pkg_get_variable( TQT_PREFIX tqt-mt prefix )
find_program( TQMOC_EXECUTABLE NAMES tqmoc HINTS "${TQT_PREFIX}/bin" )
if( NOT TQMOC_EXECUTABLE )
- tde_message_fatal( "tqmoc was NOT found.\n Please make sure TQt is correctly installed." )
+ tde_message_fatal( "tqmoc was not found.\n Please make sure TQt is correctly installed." )
endif( )
tqt_message( " tqmoc path: ${TQMOC_EXECUTABLE}" )
- # uic_executable
- tde_execute_process(
- COMMAND pkg-config tqt --variable=uic_executable
- OUTPUT_VARIABLE UIC_EXECUTABLE
- CACHE FILEPATH "TQt uic executable path"
- OUTPUT_STRIP_TRAILING_WHITESPACE )
-
- if( NOT EXISTS ${UIC_EXECUTABLE} )
- tde_message_fatal( "uic not found!\n tqt is correctly installed?" )
+ # tquic executable
+ find_program( TQUIC_EXECUTABLE NAMES tquic HINTS "${TQT_PREFIX}/bin" )
+ if( NOT EXISTS ${TQUIC_EXECUTABLE} )
+ tde_message_fatal( "tquic was not found.\n Please make sure TQt is correctly installed." )
endif( )
-
- tqt_message( " uic path: ${UIC_EXECUTABLE}" )
+ tqt_message( " tquic path: ${TQUIC_EXECUTABLE}" )
# check if tqt is usable