forked from qt-creator/qt-creator
Overwriting QMAKE_CXXFLAGS will remove the needed isysroot flag for finding the standard headers. Explicitly settings the standard lib on macOS is also no longer necessary. Change-Id: I8a5ae5df485785b473a435c7feb9f8fb3295952b Reviewed-by: Christian Stenger <christian.stenger@qt.io>
11 lines
160 B
Prolog
11 lines
160 B
Prolog
TEMPLATE = app
|
|
TARGET = overlap
|
|
|
|
CONFIG += debug console
|
|
CONFIG -= qt
|
|
!msvc: QMAKE_CXXFLAGS *= -O0 -fno-builtin
|
|
|
|
macx:CONFIG -= app_bundle
|
|
|
|
SOURCES += main.cpp
|