Files
clang-p2996/clang/test/ClangScanDeps/Inputs/modules-pch-common-via-submodule/module.modulemap
Jan Svoboda 83c633ea1a [clang][deps] Collect precompiled deps from submodules too
In this patch, the dependency scanner starts collecting precompiled dependencies from all encountered submodules, not only from top-level modules.

Reviewed By: dexonsmith

Differential Revision: https://reviews.llvm.org/D108540
2021-08-25 10:35:34 +02:00

12 lines
134 B
Plaintext

module ModCommon {
header "mod_common.h"
}
module ModTU {
header "mod_tu.h"
module ModTUSub {
header "mod_tu_sub.h"
}
}