mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 10:52:52 +00:00
28 lines
634 B
CMake
28 lines
634 B
CMake
set(kwatchgnupg_SRCS
|
|
../utils/kdlogtextwidget.cpp
|
|
../utils/gnupg-helper.cpp
|
|
../utils/hex.cpp
|
|
kwatchgnupgmainwin.cpp
|
|
kwatchgnupgconfig.cpp
|
|
aboutdata.cpp
|
|
tray.cpp
|
|
main.cpp
|
|
)
|
|
|
|
include_directories(..)
|
|
|
|
add_executable(kwatchgnupg ${kwatchgnupg_SRCS})
|
|
|
|
add_definitions(-DKDE_DEFAULT_DEBUG_AREA=5153)
|
|
|
|
target_link_libraries(kwatchgnupg
|
|
${KDE4_KDEUI_LIBS}
|
|
kleo
|
|
${QGPGME_LIBRARIES}
|
|
)
|
|
|
|
install(TARGETS kwatchgnupg ${INSTALL_TARGETS_DEFAULT_ARGS})
|
|
|
|
install(FILES kwatchgnupg.png kwatchgnupg2.png DESTINATION ${DATA_INSTALL_DIR}/kwatchgnupg/pics)
|
|
|
|
install(FILES kwatchgnupgui.rc DESTINATION ${DATA_INSTALL_DIR}/kwatchgnupg)
|