diff options
author | gregory guy <[email protected]> | 2019-06-01 14:06:38 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2019-06-04 17:21:19 +0200 |
commit | c928c04a152e0bcf2776301e58af2e7f51126ed3 (patch) | |
tree | e98c278c9993810389c2796e5d22edf12e819aec /src | |
parent | 685bea97d85f679b7251b020f5a63f194e8c631b (diff) | |
download | kerberostray-c928c04a152e0bcf2776301e58af2e7f51126ed3.tar.gz kerberostray-c928c04a152e0bcf2776301e58af2e7f51126ed3.zip |
conversion to the cmake building system
Signed-off-by: gregory guy <[email protected]>
(cherry picked from commit af37427bb1d7b4da1d563f9fa962c95fdec3628f)
Diffstat (limited to 'src')
-rw-r--r-- | src/CMakeLists.txt | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt new file mode 100644 index 0000000..cd97f20 --- /dev/null +++ b/src/CMakeLists.txt @@ -0,0 +1,53 @@ +include_directories( + ${CMAKE_BINARY_DIR} + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_CURRENT_SOURCE_DIR} + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} + ${TDE_INCLUDE_DIR}/tde + ${KRB5_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} + ${TDE_LIB_DIR} +) + + +##### kerberostray (executable) + +tde_add_executable( ${PROJECT_NAME} AUTOMOC + + SOURCES + configdlgbase.ui + main.cpp + toplevel.cpp + configdlg.cpp + LINK + tdecore-shared + tdeui-shared + tdeio-shared + ${LIBTDELDAP_LIBRARIES} + ${KRB5_LIBRARIES} + + DESTINATION ${BIN_INSTALL_DIR} +) + + +##### icons + +tde_install_icons( ${PROJECT_NAME} ) +tde_install_icons( DESTINATION ${DATA_INSTALL_DIR}/${PROJECT_NAME}/icons ) + + +##### other data + +install( + FILES ${PROJECT_NAME}.desktop + DESTINATION ${XDG_APPS_INSTALL_DIR} +) + +install( + FILES ${PROJECT_NAME}.desktop + DESTINATION ${AUTOSTART_INSTALL_DIR} +) |