You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
602 B
24 lines
602 B
2 years ago
|
###########################################
|
||
|
# #
|
||
|
# Improvements and feedback are welcome #
|
||
|
# #
|
||
|
# This file is released under GPL >= 3 #
|
||
|
# #
|
||
|
###########################################
|
||
|
|
||
|
# required stuff
|
||
|
find_package( TQt )
|
||
|
find_package( TDE )
|
||
|
|
||
|
|
||
|
##### find tdepyuic executable
|
||
|
|
||
|
find_program( TDEPYUIC_EXECUTABLE
|
||
|
NAMES tdepyuic
|
||
|
PATHS ${TDE_PREFIX}/bin
|
||
|
)
|
||
|
|
||
|
if( NOT TDEPYUIC_EXECUTABLE )
|
||
|
tde_message_fatal( "tdepyuic is required, but was not found on your system" )
|
||
|
endif()
|