shift-shell/touchscreentest/CMakeLists.txt

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
396 B
Text
Raw Normal View History

2017-09-14 08:23:49 +00:00
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)
2017-09-14 08:23:49 +00:00
INSTALL( TARGETS touchtest DESTINATION bin)
INSTALL( PROGRAMS org.kde.touchtest.desktop DESTINATION ${KDE_INSTALL_APPDIR} )