diff options
author | Slávek Banko <[email protected]> | 2019-01-03 03:54:42 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2019-01-03 03:54:42 +0100 |
commit | 0ef4ca6d362d2a6d8a3821e2f47a7d141fbcd3a9 (patch) | |
tree | 0896cb2e2c5d4203af2b498f05d3ed2b66aaef5b /conduits/recordconduit | |
parent | c2446367dbf7826bdd45ff8a943b408c1b7097d8 (diff) | |
download | kpilot-0ef4ca6d362d2a6d8a3821e2f47a7d141fbcd3a9.tar.gz kpilot-0ef4ca6d362d2a6d8a3821e2f47a7d141fbcd3a9.zip |
Migration to standard TDE CMake build system.
Add common cmake module.
Signed-off-by: Slávek Banko <[email protected]>
Diffstat (limited to 'conduits/recordconduit')
-rw-r--r-- | conduits/recordconduit/CMakeLists.txt | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/conduits/recordconduit/CMakeLists.txt b/conduits/recordconduit/CMakeLists.txt new file mode 100644 index 0000000..a4aec62 --- /dev/null +++ b/conduits/recordconduit/CMakeLists.txt @@ -0,0 +1,33 @@ + +include_directories( + ${CMAKE_BINARY_DIR} + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_CURRENT_SOURCE_DIR} + ${CMAKE_SOURCE_DIR}/lib + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + + +##### conduit_record (kpart) #################### + +tde_add_kpart( conduit_record AUTOMOC + SOURCES settings.kcfgc setup_base.ui factory.cc + LINK kpilot-shared tdeui-shared + DESTINATION ${PLUGIN_INSTALL_DIR} +) + + +##### other data ################################ + +install( FILES record-conduit.desktop + DESTINATION ${SERVICES_INSTALL_DIR} +) + +install( FILES settings.kcfg + DESTINATION ${KCFG_INSTALL_DIR} +) |