diff options
| author | Jérôme Leclercq <[email protected]> | 2020-11-26 11:10:17 +0100 |
|---|---|---|
| committer | Jérôme Leclercq <[email protected]> | 2020-11-26 11:10:17 +0100 |
| commit | 5587b14efb61576ccd490aba6d94214df5d84409 (patch) | |
| tree | 0e58052ee6fe3370bd35ea1a65348223f99bbf9c /xmake/modules/private/tools/cl/parse_include.lua | |
| parent | 92a8c9c2ed2713173b5ef0c6a7806df36556823d (diff) | |
Handle french and japanese outputs when using /showIncludes with cl.exe
Diffstat (limited to 'xmake/modules/private/tools/cl/parse_include.lua')
| -rw-r--r-- | xmake/modules/private/tools/cl/parse_include.lua | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/xmake/modules/private/tools/cl/parse_include.lua b/xmake/modules/private/tools/cl/parse_include.lua index 373aa0fdf..cd311ec49 100644 --- a/xmake/modules/private/tools/cl/parse_include.lua +++ b/xmake/modules/private/tools/cl/parse_include.lua @@ -34,8 +34,10 @@ function main(line) -- _g.notes = _g.notes or { - "Note: including file: " - , "注意: 包含文件: " + "Note: including file: " -- en + , "注意: 包含文件: " -- zh + , "Remarque : inclusion du fichier : " -- fr + , "メモ: インクルード ファイル: " -- jp } -- contain notes? |
