Adds c++11 flags for compiler.

This commit is contained in:
mfreiholz 2015-12-09 17:22:43 +01:00
parent 343c5cc727
commit b52436aac7
2 changed files with 6 additions and 0 deletions

View File

@ -9,6 +9,8 @@ CONFIG += staticlib
INCLUDEPATH += $$PWD/src INCLUDEPATH += $$PWD/src
QMAKE_CXXFLAGS += -std=c++11
SOURCES += \ SOURCES += \
src/ads/section_content.cpp \ src/ads/section_content.cpp \
src/ads/ads.cpp \ src/ads/ads.cpp \

View File

@ -5,6 +5,10 @@ greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TEMPLATE = app TEMPLATE = app
INCLUDEPATH += $$PWD/src
QMAKE_CXXFLAGS += -std=c++11
SOURCES += \ SOURCES += \
src/main.cpp \ src/main.cpp \
src/mainwindow.cpp \ src/mainwindow.cpp \