diff options
author | Egor Pugin <egor.pugin@gmail.com> | 2020-03-15 14:43:58 +0300 |
---|---|---|
committer | Egor Pugin <egor.pugin@gmail.com> | 2020-03-15 14:43:58 +0300 |
commit | 16c9b77ee88dcfa131e14643eb5889e8cf770ce9 (patch) | |
tree | 42afa5cd4245b64f16f936491d374dadabddd41c /sw.cpp | |
parent | a1acba9a850cf80cf645756dd938940beafa57e7 (diff) |
Bump minimal C++ to C++14.
Diffstat (limited to 'sw.cpp')
-rw-r--r-- | sw.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3,7 +3,7 @@ void build(Solution &s) auto &tgbot = s.addLibrary("reo7sp.tgbot", "1.2.2"); tgbot += Git("https://github.com/reo7sp/tgbot-cpp", "v{M}.{m}{po}"); { - tgbot += cpp11; + tgbot += cpp14; tgbot.ApiName = "TGBOT_API"; @@ -21,7 +21,7 @@ void build(Solution &s) auto &t = tgbot.addExecutable("test"); { t.Scope = TargetScope::Test; - t += cpp11; + t += cpp14; t += "test/.*"_rr; t += "test"_idir; t += "SW_BUILD"_def; |