mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-23 18:32:50 +00:00
29 lines
483 B
CMake
29 lines
483 B
CMake
include_directories(
|
|
${CMAKE_SOURCE_DIR}/libs/konq
|
|
${CMAKE_BINARY_DIR}/libs/konq
|
|
)
|
|
|
|
add_subdirectory(kcm)
|
|
|
|
set(kdepasswd_SRCS
|
|
kdepasswd.cpp
|
|
passwd.cpp
|
|
passwddlg.cpp
|
|
process.cpp
|
|
)
|
|
|
|
add_executable(kdepasswd ${kdepasswd_SRCS})
|
|
|
|
target_link_libraries(kdepasswd
|
|
${KDE4_KIO_LIBS}
|
|
${KDE4_KPTY_LIBS}
|
|
)
|
|
|
|
install(
|
|
TARGETS kdepasswd
|
|
${INSTALL_TARGETS_DEFAULT_ARGS}
|
|
)
|
|
install(
|
|
PROGRAMS kdepasswd.desktop
|
|
DESTINATION ${KDE4_XDG_APPS_INSTALL_DIR}
|
|
)
|