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/gcc.lua | |
| parent | aff3f765da3cd344bd0f8903ccd0d73b04fd9721 (diff) | |
add support for standard C++23 modules on msvc
Diffstat (limited to 'xmake/rules/c++/modules/modules_support/gcc.lua')
| -rw-r--r-- | xmake/rules/c++/modules/modules_support/gcc.lua | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/xmake/rules/c++/modules/modules_support/gcc.lua b/xmake/rules/c++/modules/modules_support/gcc.lua index 796b0e033..dfa68de45 100644 --- a/xmake/rules/c++/modules/modules_support/gcc.lua +++ b/xmake/rules/c++/modules/modules_support/gcc.lua @@ -514,6 +514,12 @@ function build_modules_for_batchcmds(target, batchcmds, objectfiles, modules, op batchcmds:set_depmtime(depmtime) end +-- not supported atm +function get_stdmodules(target) + local modules = {} + return modules +end + function get_bmi_extension() return ".gcm" end |
