QT += core gui widgets TEMPLATE = app CONFIG += c++17 win32-msvc { QMAKE_CXXFLAGS += /utf-8 } # For Windows crash dump generation (only for MSVC) win32-msvc { LIBS += -lDbgHelp } INCLUDEPATH += ../QtUtils/Inc # Link QtUtils library win32:CONFIG(debug, debug|release) { LIBS += -L../QtUtils/debug -lQtUtils } else:win32:CONFIG(release, debug|release) { LIBS += -L../QtUtils/release -lQtUtils } SOURCES += test_crash.cpp TARGET = test_crash