summaryrefslogtreecommitdiffstats
path: root/tests/manual/highdpi/pixelgadget/CMakeLists.txt
blob: 7946d3de13fbc122c53f1059e4458f1f9f3f1414 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Copyright (C) 2022 The Qt Company Ltd.
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

# special case skip regeneration
cmake_minimum_required(VERSION 3.16)
project(pixelgadget LANGUAGES CXX)
set(CMAKE_AUTOMOC ON)

find_package(Qt6 REQUIRED COMPONENTS Core Gui Widgets)

qt_add_executable(pixelgadget
    main.cpp
)

target_link_libraries(pixelgadget PUBLIC
    Qt::Core
    Qt::Gui
    Qt::Widgets
)