mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 10:52:51 +00:00
23 lines
698 B
CMake
23 lines
698 B
CMake
include_directories( ${CMAKE_CURRENT_SOURCE_DIR}/.. )
|
|
|
|
########### next target ###############
|
|
|
|
set(testtrash_SRCS
|
|
testtrash.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/../trashimpl.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/../trashsizecache.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/../discspaceutil.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/../kinterprocesslock.cpp
|
|
)
|
|
|
|
kde4_add_test(testtrash ${testtrash_SRCS})
|
|
|
|
target_link_libraries(testtrash ${KDE4_KIO_LIBS} ${KDE4_SOLID_LIBS} ${QT_QTTEST_LIBRARY})
|
|
|
|
### next target ###
|
|
|
|
set(lockingtest_SRCS lockingtest.cpp ../kinterprocesslock.cpp )
|
|
|
|
add_executable(lockingtest ${lockingtest_SRCS})
|
|
|
|
target_link_libraries(lockingtest ${QT_QTCORE_LIBRARY} ${QT_QTDBUS_LIBRARY})
|