summaryrefslogtreecommitdiffstats
path: root/tests/manual/inputdevices/CMakeLists.txt
blob: 54dd2556fb8a8f697aef2528df92d9e36ce87b99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Copyright (C) 2024 The Qt Company Ltd.
# SPDX-License-Identifier: BSD-3-Clause
project(inputdevices)
cmake_minimum_required(VERSION 3.19)

find_package(Qt6 REQUIRED COMPONENTS Core Gui Widgets)

qt_add_executable(inputdevices
    main.cpp
    inputdevicemodel.h inputdevicemodel.cpp
)

set_target_properties(inputdevices PROPERTIES
    AUTOMOC TRUE
)

target_link_libraries(inputdevices PUBLIC
    Qt::Widgets
)