2007-08-06 01:05:57 +02:00
|
|
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR})
|
|
|
|
########### testLayouts ###############
|
|
|
|
|
|
|
|
set(testlayouts_SRCS
|
|
|
|
testLayouts.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
kde4_add_executable(testLayouts ${testlayouts_SRCS} )
|
2007-09-22 17:45:42 +02:00
|
|
|
target_link_libraries( testLayouts ${KDE4_KDEUI_LIBS} plasma)
|
2007-08-06 01:05:57 +02:00
|
|
|
|
2007-09-14 20:19:42 +02:00
|
|
|
set(testProgressBar_SRCS
|
|
|
|
testProgressBar.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
kde4_add_executable( testProgressBar ${testProgressBar_SRCS} )
|
2007-09-22 17:45:42 +02:00
|
|
|
target_link_libraries( testProgressBar ${KDE4_KDEUI_LIBS} plasma)
|
2007-09-14 20:19:42 +02:00
|
|
|
|