diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2019-08-27 17:42:42 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2019-08-27 18:49:36 +0900 |
commit | af0f7e3ae58c1f28baa9fe1385d70eefbacc0e8a (patch) | |
tree | eb3ac0bc51909d165983ee778e42816accbf61bb /qmc-example.pro | |
parent | 97cac4b919735eb59493dd1cd528992ba90e611b (diff) | |
download | libquotient-af0f7e3ae58c1f28baa9fe1385d70eefbacc0e8a.tar.gz libquotient-af0f7e3ae58c1f28baa9fe1385d70eefbacc0e8a.zip |
libquotient.pri: use c++1z to help older qmake
CONFIG *= c++17 is available from Qt 5.12 only.
Diffstat (limited to 'qmc-example.pro')
-rw-r--r-- | qmc-example.pro | 4 |
1 files changed, 2 insertions, 2 deletions
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) |