1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-11-26 23:52:26 +00:00

Request Qt deprecation warnings.

This commit is contained in:
Thomas Harte 2020-07-03 23:16:49 -04:00
parent daa195a7fb
commit d97ebae200

View File

@ -1,29 +1,23 @@
QT += core gui multimedia gamepad QT += core gui multimedia widgets
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
CONFIG += c++17 CONFIG += c++17
# Permit multiple source files in different directories to have the same file name. # Permit multiple source files in different directories to have the same file name.
CONFIG += object_parallel_to_source CONFIG += object_parallel_to_source
# Ensure ZLib is linked against. # Link against ZLib.
INCLUDEPATH += $$[QT_INSTALL_PREFIX]/src/3rdparty/zlib INCLUDEPATH += $$[QT_INSTALL_PREFIX]/src/3rdparty/zlib
LIBS += -lz LIBS += -lz
# The following define makes your compiler emit warnings if you use # Add flags (i) to identify that this is a Qt build; and
# any Qt feature that has been marked deprecated (the exact warnings # (ii) to disable asserts in release builds.
# depend on your compiler). Please consult the documentation of the
# deprecated API in order to know how to port your code away from it.
DEFINES += QT_DEPRECATED_WARNINGS
DEFINES += TARGET_QT DEFINES += TARGET_QT
QMAKE_CXXFLAGS_RELEASE += -DNDEBUG QMAKE_CXXFLAGS_RELEASE += -DNDEBUG
# You can also make your code fail to compile if it uses deprecated APIs. # Generate warnings for any use of APIs deprecated prior to Qt 6.0.0.
# In order to do so, uncomment the following line. # Development was performed against Qt 5.14.
# You can also select to disable deprecated APIs only up to a certain version of Qt. DEFINES += QT_DEPRECATED_WARNINGS
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0 DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000
SOURCES += \ SOURCES += \
../../Analyser/Dynamic/*.cpp \ ../../Analyser/Dynamic/*.cpp \