diff options
author | Alexander Neundorf <neundorf@kde.org> | 2006-04-06 21:15:23 +0000 |
---|---|---|
committer | Alexander Neundorf <neundorf@kde.org> | 2006-04-06 21:15:23 +0000 |
commit | bec897efa6e8c7327f52e2262e9c8e66699a3422 (patch) | |
tree | 4f68ca5c9df9255fc062fb139714bc769cb8c923 | |
parent | d285c4fe4c037ecf7b74242c43eb6adf55f6c602 (diff) | |
download | extra-cmake-modules-bec897efa6e8c7327f52e2262e9c8e66699a3422.tar.gz extra-cmake-modules-bec897efa6e8c7327f52e2262e9c8e66699a3422.tar.bz2 |
-use the TOOL keyword for kconfig_compiler, genembed and makekdewidgets
ideally the keywords would be:
one of RUN_FROM_BUILDTREE, RUN_UNINSTALLED, NOINST, BUILDTOO, TOOL - has to run from the buildtree without being installed
NOGUI - bascially means "no bundle on OS X", so e.g. also for maybe kwin
default (no keyword): build a bundle on OS X, compile with RPATH to the install dir
Alex
CCMAIL: kde-buildsystem@kde.org
svn path=/trunk/KDE/kdelibs/; revision=527103
-rw-r--r-- | modules/KDE4Macros.cmake | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/KDE4Macros.cmake b/modules/KDE4Macros.cmake index 0422e5e6..c8a544ec 100644 --- a/modules/KDE4Macros.cmake +++ b/modules/KDE4Macros.cmake @@ -483,9 +483,11 @@ MACRO (KDE4_ADD_EXECUTABLE _target_NAME _first_ARG) # and now the RPATH handling... if (${_type} STREQUAL "GUI") +# set_target_properties(${_target_NAME} SKIP_BUILD_RPATH TRUE BUILD_WITH_INSTALL_RPATH TRUE) endif (${_type} STREQUAL "GUI") if (${_type} STREQUAL "NOGUI") +# set_target_properties(${_target_NAME} SKIP_BUILD_RPATH TRUE BUILD_WITH_INSTALL_RPATH TRUE) endif (${_type} STREQUAL "NOGUI") if (${_type} STREQUAL "TOOL") |