summaryrefslogtreecommitdiff
path: root/sw.cpp
diff options
context:
space:
mode:
authorEgor Pugin <egor.pugin@gmail.com>2020-03-13 14:30:27 +0300
committerGitHub <noreply@github.com>2020-03-13 14:30:27 +0300
commit5bdfc35c6542e3c94def4cec1863606cc6616e5e (patch)
tree5dcbc37a0388a7aa381ed7a10855e168f59fdaeb /sw.cpp
parent919ce7b596ebcbb3785e9d4eb0bbb8208b7ef6cb (diff)
[sw] Set cpp11 standard.
Diffstat (limited to 'sw.cpp')
-rw-r--r--sw.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/sw.cpp b/sw.cpp
index 8ae298d..f1e791e 100644
--- a/sw.cpp
+++ b/sw.cpp
@@ -2,6 +2,8 @@ void build(Solution &s)
{
auto &tgbot = s.addTarget<StaticLibraryTarget>("reo7sp.tgbot", "1.2.0");
tgbot += Git("https://github.com/reo7sp/tgbot-cpp", "v{M}.{m}");
+
+ tgbot += cpp11;
tgbot.Public += "org.sw.demo.boost.property_tree"_dep;
tgbot.Public += "org.sw.demo.openssl.ssl"_dep;