summaryrefslogtreecommitdiff
path: root/sw.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'sw.cpp')
-rw-r--r--sw.cpp33
1 files changed, 0 insertions, 33 deletions
diff --git a/sw.cpp b/sw.cpp
deleted file mode 100644
index ab9ba8f..0000000
--- a/sw.cpp
+++ /dev/null
@@ -1,33 +0,0 @@
-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 += cpp14;
-
- tgbot.ApiName = "TGBOT_API";
-
- if (tgbot.getCompilerType() == CompilerType::MSVC)
- tgbot.CompileOptions.push_back("/Zc:__cplusplus");
-
- tgbot.Public += "org.sw.demo.boost.property_tree"_dep;
- tgbot.Public += "org.sw.demo.openssl.ssl"_dep;
- tgbot.Public += "org.sw.demo.boost.system"_dep;
- tgbot.Public += "org.sw.demo.boost.date_time"_dep;
- tgbot.Public += "org.sw.demo.badger.curl.libcurl"_dep, "HAVE_CURL"_def;
- tgbot.Public += "org.sw.demo.boost.asio"_dep;
- }
-
- auto &t = tgbot.addExecutable("test");
- {
- t.Scope = TargetScope::Test;
- t += cpp14;
- t += "test/.*"_rr;
- t += "test"_idir;
- t += "SW_BUILD"_def;
- t += tgbot;
- t += "org.sw.demo.boost.test"_dep;
- }
-
- tgbot.addTest(t);
-}