diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-10-23 22:42:12 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-10-23 22:42:12 +0000 |
commit | 40bd056979327608e919754e9fec1e68950be800 (patch) | |
tree | dfcb8cfe3af66c313768cd88247a80e6e71c9745 /kdmlib | |
parent | ef563f1728d4b5e72e65e43e0e461ad28595054f (diff) | |
download | tdebase-40bd056979327608e919754e9fec1e68950be800.tar.gz tdebase-40bd056979327608e919754e9fec1e68950be800.zip |
Fix kdebase conditional builds
Thanks to Fat-Zer for the patch!
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1260420 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdmlib')
-rw-r--r-- | kdmlib/CMakeLists.txt | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/kdmlib/CMakeLists.txt b/kdmlib/CMakeLists.txt index d15d427e1..f3e8d708e 100644 --- a/kdmlib/CMakeLists.txt +++ b/kdmlib/CMakeLists.txt @@ -73,9 +73,11 @@ endif( ) ##### kompmgr (executable) ####################### -tde_add_executable( kdmtsak - SOURCES kdmtsak.cpp - LINK ${TQT_LIBRARIES} - DESTINATION ${BIN_INSTALL_DIR} - SETUID -)
\ No newline at end of file +if( BUILD_TSAK ) + tde_add_executable( kdmtsak + SOURCES kdmtsak.cpp + LINK ${TQT_LIBRARIES} + DESTINATION ${BIN_INSTALL_DIR} + SETUID + ) +endif( BUILD_TSAK ) |