cmake: Move sources to their own folder (#19776)

This commit is contained in:
Ashcon Partovi
2025-05-20 10:53:57 -07:00
committed by GitHub
parent 33be08bde8
commit 21f238a827
13 changed files with 22 additions and 22 deletions

View File

@@ -23,7 +23,7 @@ async function globSources(output, patterns, excludes = []) {
.sort((a, b) => a.localeCompare(b))
.join("\n");
await write(join(root, "cmake", output), sources);
await write(join(root, "cmake", "sources", output), sources);
}
const input = await file(join(root, "cmake", "Sources.json")).json();