mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 10:52:49 +00:00
39 lines
927 B
CMake
39 lines
927 B
CMake
set( EXECUTABLE_OUTPUT_PATH ${CMAKE_CURRENT_BINARY_DIR} )
|
|
|
|
include_directories(
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
${CMAKE_CURRENT_BINARY_DIR}/..
|
|
${CMAKE_CURRENT_SOURCE_DIR}/..
|
|
)
|
|
|
|
set(proxymodeltestapp_SRCS
|
|
main.cpp
|
|
mainwindow.cpp
|
|
breadcrumbswidget.cpp
|
|
breadcrumbnavigationwidget.cpp
|
|
breadcrumbdirectionwidget.cpp
|
|
checkablewidget.cpp
|
|
selectionpmwidget.cpp
|
|
statesaverwidget.cpp
|
|
kidentityproxymodelwidget.cpp
|
|
recursivefilterpmwidget.cpp
|
|
descendantpmwidget.cpp
|
|
reparentingpmwidget.cpp
|
|
kreparentingproxymodel.cpp
|
|
proxymodeltestwidget.cpp
|
|
proxyitemselectionwidget.cpp
|
|
lessthanwidget.cpp
|
|
modelcommanderwidget.cpp
|
|
scriptablereparentingwidget.cpp
|
|
matchcheckingwidget.cpp
|
|
)
|
|
|
|
kde4_add_executable(proxymodeltestapp TEST ${proxymodeltestapp_SRCS})
|
|
|
|
target_link_libraries(proxymodeltestapp
|
|
${KDE4_KDEUI_LIBS}
|
|
proxymodeltestsuite
|
|
${QT_QTSCRIPT_LIBRARY}
|
|
)
|
|
|
|
|