mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 10:52:51 +00:00
19 lines
481 B
CMake
19 lines
481 B
CMake
include_directories(
|
|
${CMAKE_CURRENT_SOURCE_DIR}/..
|
|
${CMAKE_CURRENT_BINARY_DIR}/..
|
|
)
|
|
|
|
set (kpasswdserver_test_SRCS
|
|
kpasswdservertest.cpp
|
|
../kpasswdserver.cpp
|
|
)
|
|
|
|
qt4_add_dbus_adaptor(kpasswdserver_test_SRCS ../org.kde.KPasswdServer.xml kpasswdserver.h KPasswdServer)
|
|
|
|
kde4_add_test(kpasswdservertest ${kpasswdserver_test_SRCS})
|
|
target_link_libraries(kpasswdservertest
|
|
${KDE4_KDECORE_LIBS}
|
|
${KDE4_KIO_LIBS}
|
|
${QT_QTCORE_LIBRARY}
|
|
${QT_QTTEST_LIBRARY}
|
|
)
|