diff options
author | Clinton Stimpson <clinton@elemtech.com> | 2007-12-18 18:05:43 (GMT) |
---|---|---|
committer | Clinton Stimpson <clinton@elemtech.com> | 2007-12-18 18:05:43 (GMT) |
commit | b383d98771b958faa1f5fd6573df9929d251d0f1 (patch) | |
tree | 546c5381b8cfd395e7302e437a388fc2cb411d5c /Modules/FindQt4.cmake | |
parent | 4b2925222a3162a9d5ebab0a8a875573dd058b03 (diff) | |
download | CMake-b383d98771b958faa1f5fd6573df9929d251d0f1.zip CMake-b383d98771b958faa1f5fd6573df9929d251d0f1.tar.gz CMake-b383d98771b958faa1f5fd6573df9929d251d0f1.tar.bz2 |
ENH: Improve documentation of new features.
Diffstat (limited to 'Modules/FindQt4.cmake')
-rw-r--r-- | Modules/FindQt4.cmake | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/Modules/FindQt4.cmake b/Modules/FindQt4.cmake index 981fd11..890ed37 100644 --- a/Modules/FindQt4.cmake +++ b/Modules/FindQt4.cmake @@ -29,8 +29,20 @@ # Add this variable to your TARGET_LINK_LIBRARIES. # # macro QT4_WRAP_CPP(outfiles inputfile ... OPTIONS ...) +# create moc code from a list of files containing Qt class with +# the Q_OBJECT declaration. Options may be given to moc, such as those found +# when executing "moc -help" +# # macro QT4_WRAP_UI(outfiles inputfile ... OPTIONS ...) +# create code from a list of Qt designer ui files. +# Options may be given to uic, such as those found +# when executing "uic -help" +# # macro QT4_ADD_RESOURCES(outfiles inputfile ... OPTIONS ...) +# create code from a list of Qt resource files. +# Options may be given to rcc, such as those found +# when executing "rcc -help" +# # macro QT4_AUTOMOC(inputfile ... ) # macro QT4_GENERATE_MOC(inputfile outputfile ) # @@ -112,9 +124,9 @@ # QT_PLUGINS_DIR Path to "plugins" for Qt4 # # For every library of Qt there are three variables: -# QT_QTFOO_LIBRARY_RELEASE, which contains the full path to the release version -# QT_QTFOO_LIBRARY_DEBUG, which contains the full path to the debug version -# QT_QTFOO_LIBRARY, the full path to the release version if available, otherwise to the debug version +# QT_QTFOO_LIBRARY_RELEASE, which contains the full path to the release version, if it exists +# QT_QTFOO_LIBRARY_DEBUG, which contains the full path to the debug version, if it exists +# QT_QTFOO_LIBRARY, the full path to the release and/or debug version # # So there are the following variables: # The Qt3Support library: QT_QT3SUPPORT_LIBRARY |