diff options
-rw-r--r-- | libquotient.pri | 3 | ||||
-rw-r--r-- | qmc-example.pro | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/libquotient.pri b/libquotient.pri index b12373e8..cab9229d 100644 --- a/libquotient.pri +++ b/libquotient.pri @@ -1,5 +1,6 @@ QT += network multimedia -CONFIG += c++17 warn_on rtti_off create_prl object_parallel_to_source +# TODO: Having moved to Qt 5.12, replace c++1z with c++17 below +CONFIG *= c++1z warn_on rtti_off create_prl object_parallel_to_source win32-msvc* { QMAKE_CXXFLAGS_WARN_ON += -wd4100 -wd4267 diff --git a/qmc-example.pro b/qmc-example.pro index 4f3e922f..a9548df9 100644 --- a/qmc-example.pro +++ b/qmc-example.pro @@ -1,8 +1,8 @@ TEMPLATE = app -CONFIG += c++17 warn_on object_parallel_to_source +CONFIG *= c++1z warn_on object_parallel_to_source -windows { CONFIG += console } +windows { CONFIG *= console } include(libquotient.pri) |