diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2004-06-16 13:44:03 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2004-06-16 13:44:03 (GMT) |
commit | 6ccbfe979583078e02c5e3eb55d83aebd04c9b7c (patch) | |
tree | e49a7ab6255dd6de76702dceb43600742d05e07c /Modules | |
parent | 4df215a268267b457cc6e5cf2bfc23d1c8de7b11 (diff) | |
download | CMake-6ccbfe979583078e02c5e3eb55d83aebd04c9b7c.zip CMake-6ccbfe979583078e02c5e3eb55d83aebd04c9b7c.tar.gz CMake-6ccbfe979583078e02c5e3eb55d83aebd04c9b7c.tar.bz2 |
clean up commands so they don't need extra variable
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/FindFLTK.cmake | 5 | ||||
-rw-r--r-- | Modules/FindQt.cmake | 10 |
2 files changed, 0 insertions, 15 deletions
diff --git a/Modules/FindFLTK.cmake b/Modules/FindFLTK.cmake index 5152ae7..6680d7a 100644 --- a/Modules/FindFLTK.cmake +++ b/Modules/FindFLTK.cmake @@ -3,7 +3,6 @@ # # The following settings are defined # FLTK_FLUID_EXECUTABLE, where to find the Fluid tool -# FLTK_WRAP_UI, This allows the FLTK_WRAP_UI command to work. # FLTK_INCLUDE_DIR, where to find include files # FLTK_LIBRARIES, list of fltk libraries # FLTK_VERSION_1.0.11 Use this Version @@ -103,10 +102,6 @@ ENDIF(FLTK_INCLUDE_DIR) FIND_PROGRAM(FLTK_FLUID_EXECUTABLE fluid ${path} ${FLTK_INCLUDE_DIR}/fluid ) -# Enable the Wrap UI command -IF (FLTK_FLUID_EXECUTABLE) - SET ( FLTK_WRAP_UI 1 CACHE INTERNAL "Can we honour the FLTK_WRAP_UI command" ) -ENDIF (FLTK_FLUID_EXECUTABLE) # # Set FLTK_FOUND diff --git a/Modules/FindQt.cmake b/Modules/FindQt.cmake index 995d43f..b9335d0 100644 --- a/Modules/FindQt.cmake +++ b/Modules/FindQt.cmake @@ -4,8 +4,6 @@ # QT_INCLUDE_DIR, where to find qt.h, etc. # QT_LIBRARIES, the libraries to link against to use Qt. # QT_DEFINITIONS, definitions to use when compiling code that uses Qt. -# QT_WRAP_CPP, If false, don't use QT_WRAP_CPP command. -# QT_WRAP_UI, If false, don't use QT_WRAP_UI command. # QT_FOUND, If false, don't try to use Qt. # also defined, but not for general use are @@ -72,14 +70,6 @@ IF (WIN32) ENDIF (WIN32) -IF (QT_MOC_EXECUTABLE) - SET ( QT_WRAP_CPP "YES") -ENDIF (QT_MOC_EXECUTABLE) - -IF (QT_UIC_EXECUTABLE) - SET ( QT_WRAP_UI "YES") -ENDIF (QT_UIC_EXECUTABLE) - IF(QT_INCLUDE_DIR) IF(QT_QT_LIBRARY) |