# Define expandable environment variables EXTLIBS = $$(EXTLIBS_ROOT) VCPKG = $$(VCPKG_ROOT) # Includes common configuration for all subdirectory .pro files. CONFIG += c++latest # disables all the APIs deprecated before Qt 6.0.0 DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 INCLUDEPATH += .. \ $${VCPKG}/installed/x64-windows/include \ $${EXTLIBS}/ait664/include CONFIG(debug, debug|release) { LIBS += -L$${VCPKG}/installed/x64-windows/debug/lib } else { LIBS += -L$${VCPKG}/installed/x64-windows/lib } WARNINGS += -Wall