From 1792ceb6a37e1675a8dbe8b9c7e4c8c825699b9b Mon Sep 17 00:00:00 2001 From: lzwdgc Date: Sat, 8 May 2021 19:28:20 +0300 Subject: [PATCH] Add package definitions. --- sw.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/sw.cpp b/sw.cpp index 55ed135..bd4ada6 100644 --- a/sw.cpp +++ b/sw.cpp @@ -13,6 +13,7 @@ void build(Solution &s) auto add_exe = [&tools](const String &name) -> decltype(auto) { auto &t = tools.addExecutable(name); + t.PackageDefinitions = true; t += cpp20; t.setRootDirectory("src/" + name); t += "pub.egorpugin.primitives.sw.main"_dep;