diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-02-16 20:17:18 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-02-16 20:17:18 +0000 |
commit | cb7eddb91455a69cf66fcd717e91a51ca5e2cfef (patch) | |
tree | cf5546e4d7c44370fbe9ca2be937bd254f30ebaa /conduits/null/CMakeLists.txt | |
download | kpilot-cb7eddb91455a69cf66fcd717e91a51ca5e2cfef.tar.gz kpilot-cb7eddb91455a69cf66fcd717e91a51ca5e2cfef.zip |
Moved kpilot from kdepim to applications, as the core Trinity libraries should not contain hardware-dependent software
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kpilot@1221127 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'conduits/null/CMakeLists.txt')
-rw-r--r-- | conduits/null/CMakeLists.txt | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/conduits/null/CMakeLists.txt b/conduits/null/CMakeLists.txt new file mode 100644 index 0000000..b2fdbb8 --- /dev/null +++ b/conduits/null/CMakeLists.txt @@ -0,0 +1,38 @@ +include_directories( + ${CMAKE_CURRENT_BINARY_DIR} +) + +set(conduit_null_SRCS + null-conduit.cc + null-factory.cc +) + +set(conduit_null_UIS + setup_base.ui +) + +set(conduit_null_KCFGS + nullSettings.kcfgc +) + +kde3_add_kcfg_files(conduit_null_SRCS ${conduit_null_KCFGS}) +kde3_add_ui_files(conduit_null_SRCS ${conduit_null_UIS}) +kde3_automoc(${conduit_null_SRCS}) +add_library(conduit_null SHARED ${conduit_null_SRCS}) + +set_target_properties( + conduit_null PROPERTIES LOCATION ${KDE3_PLUGIN_INSTALL_DIR} + INSTALL_RPATH ${CMAKE_INSTALL_PREFIX}/lib + PREFIX "" +) + +kde3_install_libtool_file(conduit_null) + +install( + TARGETS conduit_null + LIBRARY DESTINATION ${KDE3_PLUGIN_INSTALL_DIR} +) + +install( + FILES null-conduit.desktop DESTINATION ${KDE3_SERVICES_DIR} +) |