mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
15 lines
395 B
CMake
15 lines
395 B
CMake
|
|
set(applicationlistmodeltest_SRCS
|
|
main.cpp
|
|
modeltest.cpp
|
|
../applicationlistmodel.cpp
|
|
)
|
|
|
|
add_executable(applicationlistmodeltest ${applicationlistmodeltest_SRCS})
|
|
target_link_libraries(applicationlistmodeltest
|
|
Qt5::Core
|
|
Qt5::Test
|
|
Qt5::Widgets
|
|
KF5::Service
|
|
)
|
|
|