summaryrefslogtreecommitdiffstats
path: root/tests/manual/qtabletevent/device_information/CMakeLists.txt
blob: a0583b1f9398326ce275bcac7b18a60b38fbd87b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Copyright (C) 2023 The Qt Company Ltd.
# SPDX-License-Identifier: BSD-3-Clause

project(tablet_device_info)
cmake_minimum_required(VERSION 3.19)

find_package(Qt6 REQUIRED COMPONENTS Core Gui Widgets)

qt_add_executable(tablet_device_info
    main.cpp
    tabletwidget.h tabletwidget.cpp
)

set_target_properties(tablet_device_info PROPERTIES
    AUTOMOC TRUE
)

target_link_libraries(tablet_device_info PUBLIC
    Qt::Widgets
)