Take all files from subproject dirs.

This commit is contained in:
lzwdgc 2024-04-22 02:41:39 +03:00
parent bbd4838022
commit 0c0adeda4c

1
sw.cpp
View file

@ -24,6 +24,7 @@ void build(Solution &s)
t.PackageDefinitions = true;
t += cppstd;
t.setRootDirectory("src/" + dirname);
t += ".*"_rr; // to take .natvis files explicitly
return t;
};
auto add_exe = [&](const String &name, const String &dirname = {}) -> decltype(auto)