summaryrefslogtreecommitdiffstats
path: root/tests/manual/highdpi/pixelgadget/CMakeLists.txt
blob: ac2013af0ed50c7332f75b6e8bfdb7ce22784ad8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 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
)