74cae2580f
Display active environment variables. Reorder the labels with device independent values to the left and native values to the right. Display the Qt scale factor. Change-Id: If95c252b06eff5abd91a25847777246effe94be2 Reviewed-by: Morten Johan Sørvig <morten.sorvig@qt.io>
21 lines
377 B
CMake
21 lines
377 B
CMake
# special case skip regeneration
|
|
cmake_minimum_required(VERSION 3.14)
|
|
project(dprgadget LANGUAGES CXX)
|
|
set(CMAKE_AUTOMOC ON)
|
|
|
|
find_package(Qt6 COMPONENTS Core)
|
|
find_package(Qt6 COMPONENTS Gui)
|
|
find_package(Qt6 COMPONENTS Widgets)
|
|
|
|
qt_add_executable(dprgadget
|
|
main.cpp
|
|
)
|
|
|
|
target_link_libraries(dprgadget PUBLIC
|
|
Qt::Core
|
|
Qt::Gui
|
|
Qt::GuiPrivate
|
|
Qt::Widgets
|
|
)
|
|
|