diff options
author | Slávek Banko <[email protected]> | 2021-08-26 02:36:35 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2021-08-26 02:36:35 +0200 |
commit | 2c7714e6a1ccc5fdcfc2e1833d6c54135cdffb07 (patch) | |
tree | 28c9f93ea62372c472e2eac0cf2e1898d1a871c4 /src/CMakeLists.txt | |
download | tdesshaskpass-2c7714e6a1ccc5fdcfc2e1833d6c54135cdffb07.tar.gz tdesshaskpass-2c7714e6a1ccc5fdcfc2e1833d6c54135cdffb07.zip |
Initial import of ksshaskpass 0.4.1.
Signed-off-by: Slávek Banko <[email protected]>
Diffstat (limited to 'src/CMakeLists.txt')
-rw-r--r-- | src/CMakeLists.txt | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt new file mode 100644 index 0000000..56dfdc7 --- /dev/null +++ b/src/CMakeLists.txt @@ -0,0 +1,10 @@ +set(ksshaskpass_SRCS + ksshaskpass.cpp +) + +add_executable(ksshaskpass ${ksshaskpass_SRCS}) + +target_link_libraries(ksshaskpass ${QT_LIBRARIES} kdeui kwalletclient) + +install(TARGETS ksshaskpass DESTINATION ${CMAKE_INSTALL_PREFIX}/bin) +install(FILES ksshaskpass.1 DESTINATION ${CMAKE_INSTALL_PREFIX}/share/man/man1) |