From 0c0adeda4c99cb89ea3097b2fdcef850879446f0 Mon Sep 17 00:00:00 2001 From: lzwdgc Date: Mon, 22 Apr 2024 02:41:39 +0300 Subject: [PATCH] Take all files from subproject dirs. --- sw.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/sw.cpp b/sw.cpp index 4e71a46..9b2b157 100644 --- a/sw.cpp +++ b/sw.cpp @@ -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)