qt5: adapt to C++20 API changes

Issue #5227
Issue #5239
This commit is contained in:
Christian Prochaska
2024-06-07 17:26:47 +02:00
committed by Norman Feske
parent 4969c7cdb0
commit 06d098052f
9 changed files with 8 additions and 5 deletions

View File

@ -1,6 +1,6 @@
QT += core gui widgets
TEMPLATE = app
CONFIG += c++2a
SOURCES += main.cpp \
main_window.cpp
HEADERS += main_window.h

View File

@ -1,6 +1,7 @@
TEMPLATE = app
TARGET = test-tiled_wm-app
QT = core gui widgets
CONFIG += c++2a
SOURCES += main.cpp app.cpp
HEADERS += app.h ../util.h
RESOURCES = app.qrc

View File

@ -1,6 +1,7 @@
TEMPLATE = app
TARGET = test-tiled_wm-overlay
QT = core gui widgets
CONFIG += c++2a
SOURCES += main.cpp overlay.cpp
HEADERS += overlay.h ../util.h
RESOURCES = overlay.qrc

View File

@ -1,6 +1,7 @@
TEMPLATE = app
TARGET = test-tiled_wm-panel
QT = core gui widgets
CONFIG += c++2a
SOURCES += main.cpp panel.cpp
HEADERS += panel.h icon.h ../util.h
RESOURCES = panel.qrc