diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-10-11 22:38:52 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-10-11 22:38:52 +0900 |
commit | fd707ac5bb1b43ed40c0ce644e511035701f9bc5 (patch) | |
tree | 3c4bd0823c616443d1c9e87a3b0a3ad6a28f2c0b /modules/tde_uic.cmake | |
parent | 52da250770e288fc1f51669a886cf206589daefc (diff) | |
download | tde-cmake-fd707ac5bb1b43ed40c0ce644e511035701f9bc5.tar.gz tde-cmake-fd707ac5bb1b43ed40c0ce644e511035701f9bc5.zip |
Use tquic directly instead of relying on tqtinterface info
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'modules/tde_uic.cmake')
-rw-r--r-- | modules/tde_uic.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/tde_uic.cmake b/modules/tde_uic.cmake index 4a38eaa..c573d5a 100644 --- a/modules/tde_uic.cmake +++ b/modules/tde_uic.cmake @@ -37,7 +37,7 @@ else( TDE_FOUND AND NOT TQT_ONLY ) endif( TDE_FOUND AND NOT TQT_ONLY ) # Generate ui .h file -tde_execute_process( COMMAND ${UIC_EXECUTABLE} +tde_execute_process( COMMAND ${TQUIC_EXECUTABLE} -nounload -tr ${TR_FUNC} ${L} ${local_ui_file} @@ -54,7 +54,7 @@ if( _ui_h_content ) endif( ) # Generate ui .cpp file -tde_execute_process( COMMAND ${UIC_EXECUTABLE} +tde_execute_process( COMMAND ${TQUIC_EXECUTABLE} -nounload -tr ${TR_FUNC} ${L} -impl ${_ui_basename}.h |