summaryrefslogtreecommitdiffstats
path: root/Modules/FindQt4.cmake
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2012-08-08 21:31:52 (GMT)
committerStephen Kelly <steveire@gmail.com>2012-08-19 21:45:09 (GMT)
commit1420691b3548ab34c85fb10b4798586e974e4c98 (patch)
treee64bf3244df40b53f58e193a9f770e4887ea80dd /Modules/FindQt4.cmake
parentaddefc2ae3b33a75a7152730146b46b319118a24 (diff)
downloadCMake-1420691b3548ab34c85fb10b4798586e974e4c98.zip
CMake-1420691b3548ab34c85fb10b4798586e974e4c98.tar.gz
CMake-1420691b3548ab34c85fb10b4798586e974e4c98.tar.bz2
Add new qt4_use_modules function.
Diffstat (limited to 'Modules/FindQt4.cmake')
-rw-r--r--Modules/FindQt4.cmake11
1 files changed, 11 insertions, 0 deletions
diff --git a/Modules/FindQt4.cmake b/Modules/FindQt4.cmake
index e7d25c9..c5d98fa 100644
--- a/Modules/FindQt4.cmake
+++ b/Modules/FindQt4.cmake
@@ -163,6 +163,17 @@
# filenames can be found in qm_files. The ts_files
# must exists and are not updated in any way.
#
+# function QT4_USE_MODULES( target [link_type] modules...)
+# 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.
+# Modules are roughly equivalent to components of Qt4, so usage would be
+# something like:
+# qt4_use_modules(myexe Core Gui Declarative)
+# to use QtCore, QtGui and QtDeclarative. The optional <link_type> argument can
+# be specified as either LINK_PUBLIC or LINK_PRIVATE to specify the same argument
+# to the target_link_libraries call.
+#
#
# Below is a detailed list of variables that FindQt4.cmake sets.
# QT_FOUND If false, don't try to use Qt.