diff options
| author | ruki <[email protected]> | 2022-12-04 22:19:39 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-12-04 22:19:39 +0800 |
| commit | 49d732c29c8e97ad09fbf35effa1b7bdeda1c727 (patch) | |
| tree | 5bd5b4ac97cecc320c317571be05e2f0dfc8f251 /xmake/rules/c++/modules/modules_support/common.lua | |
| parent | 06195f234f01a36603f5f064b6e7772f7f617e85 (diff) | |
| parent | b0a3ca100afda323d50c2ab7eb1b6dd5a84dc0e9 (diff) | |
Merge pull request #3131 from Arthapz/minor-refactor
Refactor module build
Diffstat (limited to 'xmake/rules/c++/modules/modules_support/common.lua')
| -rw-r--r-- | xmake/rules/c++/modules/modules_support/common.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/xmake/rules/c++/modules/modules_support/common.lua b/xmake/rules/c++/modules/modules_support/common.lua index b21613f61..6401f1f5b 100644 --- a/xmake/rules/c++/modules/modules_support/common.lua +++ b/xmake/rules/c++/modules/modules_support/common.lua @@ -229,7 +229,8 @@ function _parse_dependencies_data(target, moduleinfos) name = name:replace(":", "-") m.provides[provide["logical-name"]] = { bmi = path.join(cachedir, name), - sourcefile = moduleinfo.sourcefile + sourcefile = moduleinfo.sourcefile, + interface = provide["is-interface"] } end end |
