diff options
| author | Arthur LAURENT <[email protected]> | 2022-12-12 19:22:18 +0100 |
|---|---|---|
| committer | Arthur LAURENT <[email protected]> | 2022-12-12 19:22:18 +0100 |
| commit | e4d4e9b9f42eb9443438c632a72add9560e517ac (patch) | |
| tree | b38ebbe76d4164fdb9923c6642935c50259b3bf8 /xmake/rules/c++/modules/modules_support/common.lua | |
| parent | aff3f765da3cd344bd0f8903ccd0d73b04fd9721 (diff) | |
add support for standard C++23 modules on msvc
Diffstat (limited to 'xmake/rules/c++/modules/modules_support/common.lua')
| -rw-r--r-- | xmake/rules/c++/modules/modules_support/common.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/xmake/rules/c++/modules/modules_support/common.lua b/xmake/rules/c++/modules/modules_support/common.lua index ac555f778..01fa1bc88 100644 --- a/xmake/rules/c++/modules/modules_support/common.lua +++ b/xmake/rules/c++/modules/modules_support/common.lua @@ -515,6 +515,7 @@ function get_module_dependencies(target, sourcebatch, opt) if changed or modules == nil then local moduleinfos = load_moduleinfos(target, sourcebatch) modules = _parse_dependencies_data(target, moduleinfos) + modules = table.join(modules or {}, modules_support(target).get_stdmodules(target)) if modules then _check_circular_dependencies(modules) end |
