diff options
author | Brad King <brad.king@kitware.com> | 2014-11-06 13:50:40 -0500 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-11-06 14:52:26 -0500 |
commit | 20c5f4fbd98148685954a6d9ca567d43758f63aa (patch) | |
tree | b9e19074122ec3701cae51c2131e20ee89a33690 /Modules/FindQt4.cmake | |
parent | 6c4aa388a5de3786f16fe806e4586d5f8d9e205d (diff) | |
download | cmake-20c5f4fbd98148685954a6d9ca567d43758f63aa.tar.gz |
Modules: Wrap long lines in pre-formatted documentation blocks
Help format the blocks better for display without a wide screen.
Diffstat (limited to 'Modules/FindQt4.cmake')
-rw-r--r-- | Modules/FindQt4.cmake | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/Modules/FindQt4.cmake b/Modules/FindQt4.cmake index 2c39de570d..c715c81bbf 100644 --- a/Modules/FindQt4.cmake +++ b/Modules/FindQt4.cmake @@ -104,9 +104,11 @@ # macro QT4_ADD_DBUS_INTERFACES(outfiles inputfile ... ) # Create the interface header and implementation files # for all listed interface xml files. -# The basename will be automatically determined from the name of the xml file. +# The basename will be automatically determined from the name +# of the xml file. # -# The source file properties described for QT4_ADD_DBUS_INTERFACE also apply here. +# The source file properties described for +# QT4_ADD_DBUS_INTERFACE also apply here. # # # :: @@ -172,7 +174,7 @@ # a class uses the Q_OBJECT macro, moc has to run on it. If you don't # want to use QT4_WRAP_CPP() (which is reliable and mature), you can insert # #include "foo.moc" -# in foo.cpp and then give foo.cpp as argument to QT4_AUTOMOC(). This will the +# in foo.cpp and then give foo.cpp as argument to QT4_AUTOMOC(). This will # scan all listed files at cmake-time for such included moc files and if it # finds them cause a rule to be generated to run moc at build time on the # accompanying header file foo.h. @@ -188,8 +190,8 @@ # This function is obsolete. Use target_link_libraries with IMPORTED targets # instead. # Make <target> use the <modules> from Qt. Using a Qt module means -# to link to the library, add the relevant include directories for the module, -# and add the relevant compiler defines for using the module. +# to link to the library, add the relevant include directories for the +# module, and add the relevant compiler defines for using the module. # Modules are roughly equivalent to components of Qt4, so usage would be # something like: # qt4_use_modules(myexe Core Gui Declarative) |