diff options
Diffstat (limited to 'qt/ScintillaEditPy/ScintillaEditPy.pro')
-rw-r--r-- | qt/ScintillaEditPy/ScintillaEditPy.pro | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/qt/ScintillaEditPy/ScintillaEditPy.pro b/qt/ScintillaEditPy/ScintillaEditPy.pro index 49f7fb0f2..396e037fb 100644 --- a/qt/ScintillaEditPy/ScintillaEditPy.pro +++ b/qt/ScintillaEditPy/ScintillaEditPy.pro @@ -6,21 +6,14 @@ TARGET = ScintillaEditPy # Clear debug & release so that sepbuild.pri can set one or the other CONFIG -= debug release +CONFIG += c++14 include(sepbuild.pri) VERSION = $$SCINTILLA_VERSION -unix { - # <regex> requires C++11 support - greaterThan(QT_MAJOR_VERSION, 4){ - CONFIG += c++11 - } else { - QMAKE_CXXFLAGS += -std=c++0x -Wno-deprecated-declarations - } -} - win32 { + QMAKE_CXXFLAGS += -std:c++latest DebugBuild { TARGET_EXT = _d.pyd } |