mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
19 lines
396 B
CMake
19 lines
396 B
CMake
cmake_minimum_required(VERSION 2.8.12)
|
|
|
|
project(touchtest LANGUAGES CXX)
|
|
|
|
|
|
SET(touchtest_SRC
|
|
main.cpp
|
|
)
|
|
|
|
QT5_ADD_RESOURCES(touchtest_SRC
|
|
qml.qrc
|
|
)
|
|
|
|
add_executable(touchtest ${touchtest_SRC})
|
|
|
|
target_link_libraries(${PROJECT_NAME} Qt::Core Qt::Quick Qt::Widgets)
|
|
|
|
INSTALL( TARGETS touchtest DESTINATION bin)
|
|
INSTALL( PROGRAMS org.kde.touchtest.desktop DESTINATION ${KDE_INSTALL_APPDIR} )
|