diff options
author | Egor Pugin <egor.pugin@gmail.com> | 2020-03-13 14:30:27 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-13 14:30:27 +0300 |
commit | 5bdfc35c6542e3c94def4cec1863606cc6616e5e (patch) | |
tree | 5dcbc37a0388a7aa381ed7a10855e168f59fdaeb | |
parent | 919ce7b596ebcbb3785e9d4eb0bbb8208b7ef6cb (diff) |
[sw] Set cpp11 standard.
-rw-r--r-- | sw.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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; |