summaryrefslogtreecommitdiff
path: root/sw.cpp
diff options
context:
space:
mode:
authorEgor Pugin <egor.pugin@gmail.com>2020-03-15 14:43:58 +0300
committerEgor Pugin <egor.pugin@gmail.com>2020-03-15 14:43:58 +0300
commit16c9b77ee88dcfa131e14643eb5889e8cf770ce9 (patch)
tree42afa5cd4245b64f16f936491d374dadabddd41c /sw.cpp
parenta1acba9a850cf80cf645756dd938940beafa57e7 (diff)
Bump minimal C++ to C++14.
Diffstat (limited to 'sw.cpp')
-rw-r--r--sw.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw.cpp b/sw.cpp
index bfd4a94..ab9ba8f 100644
--- a/sw.cpp
+++ b/sw.cpp
@@ -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;