summaryrefslogtreecommitdiffstats
path: root/ConfigureChecks.cmake
blob: c1de8bc433808ce68610fb18e94ceb4e39943d82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
###########################################
#                                         #
#  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()