diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2019-08-11 17:02:25 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2019-08-11 17:02:25 +0900 |
commit | 1803e79038a8f8ab966c40572c039b10bf51072e (patch) | |
tree | 2eb7026418aac256a3d47784f491a665bccfd715 /libquotient.pri | |
parent | e9ae0d5eaac12a276ea352f1e633fb22cdd46828 (diff) | |
download | libquotient-1803e79038a8f8ab966c40572c039b10bf51072e.tar.gz libquotient-1803e79038a8f8ab966c40572c039b10bf51072e.zip |
More MSVC suppresions; switch to C++17 in qmake as well
Diffstat (limited to 'libquotient.pri')
-rw-r--r-- | libquotient.pri | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libquotient.pri b/libquotient.pri index 2ff14ce2..b12373e8 100644 --- a/libquotient.pri +++ b/libquotient.pri @@ -1,8 +1,8 @@ QT += network multimedia -CONFIG += c++14 warn_on rtti_off create_prl object_parallel_to_source +CONFIG += c++17 warn_on rtti_off create_prl object_parallel_to_source win32-msvc* { - QMAKE_CXXFLAGS_WARN_ON += -wd4100 + QMAKE_CXXFLAGS_WARN_ON += -wd4100 -wd4267 } else { QMAKE_CXXFLAGS_WARN_ON += -Wno-unused-parameter } |