diff options
author | Alexander Neundorf <neundorf@kde.org> | 2006-04-22 20:51:51 +0000 |
---|---|---|
committer | Alexander Neundorf <neundorf@kde.org> | 2006-04-22 20:51:51 +0000 |
commit | a509f4a028b822285e7c1f693d27131fd646ee3e (patch) | |
tree | 4cb8860416c732cb71d73feb176003c68c42cc63 /modules/FindKDE4Internal.cmake | |
parent | 9a75f145de53a04eca02dd5da5c2ab092f67d2f0 (diff) | |
download | extra-cmake-modules-a509f4a028b822285e7c1f693d27131fd646ee3e.tar.gz extra-cmake-modules-a509f4a028b822285e7c1f693d27131fd646ee3e.tar.bz2 |
-add docs for the NOGUI and RUN_UNINSTALLED options for KDE4_ADD_EXECUTABLE()
-use the new multiple-output syntax for KDE4_ADD_KCFG_FILES()
-introduce a new target property WRAPPER_SCRIPT, which is set to the created wrapper script (or the executable
if none is generated), which can then be easily queried and used e.g. in add_custom_command
Alex
Adriaan, does this fix your RPATH problem ?
CCMAIL: <groot@kde.org>
svn path=/trunk/KDE/kdelibs/; revision=532800
Diffstat (limited to 'modules/FindKDE4Internal.cmake')
-rw-r--r-- | modules/FindKDE4Internal.cmake | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/modules/FindKDE4Internal.cmake b/modules/FindKDE4Internal.cmake index a2f957a3..5366970d 100644 --- a/modules/FindKDE4Internal.cmake +++ b/modules/FindKDE4Internal.cmake @@ -156,10 +156,15 @@ # A library named kdeinit_<name> will be created and a small executable which links to it. # It supports KDE3_ENABLE_FINAL # -# KDE4_ADD_EXECUTABLE (name file1 ... fileN) +# KDE4_ADD_EXECUTABLE (name [ NOGUI | RUN_UNINSTALLED] file1 ... fileN) # Equivalent to ADD_EXECUTABLE(), but additionally adds support for KDE4_ENABLE_FINAL. # If you don't need support for KDE4_ENABLE_FINAL, you can just use the # normal ADD_EXECUTABLE(). +# If the executable has to be run from the buildtree (e.g. unit tests and code generators +# used later on when compiling), set the option RUN_UNINSTALLED. +# If the executable doesn't have a GUI, use the option NOGUI. By default on OS X +# application bundles are created, with the NOGUI option no bundles but simple executables +# are created. Currently it doesn't have any effect on other platforms. # # KDE4_ADD_LIBRARY (name [STATIC | SHARED | MODULE ] file1 ... fileN) # Equivalent to ADD_LIBRARY(), but additionally it supports KDE4_ENABLE_FINAL |