diff options
| author | ruki <[email protected]> | 2024-01-22 22:43:29 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2024-01-25 12:09:58 +0800 |
| commit | a74bb4c14a8eda9c70062c1c6f592f2474672b71 (patch) | |
| tree | 6ee4ec8ba24c424ad63538d296ee1779dace8998 /xmake/rules/utils/compiler_runtime/xmake.lua | |
| parent | ecd32a1463825b40a6dc69695bbb0276b7236ae7 (diff) | |
improve android runtimes
Diffstat (limited to 'xmake/rules/utils/compiler_runtime/xmake.lua')
| -rw-r--r-- | xmake/rules/utils/compiler_runtime/xmake.lua | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/xmake/rules/utils/compiler_runtime/xmake.lua b/xmake/rules/utils/compiler_runtime/xmake.lua index 61681b235..1a50fddef 100644 --- a/xmake/rules/utils/compiler_runtime/xmake.lua +++ b/xmake/rules/utils/compiler_runtime/xmake.lua @@ -24,9 +24,15 @@ rule("utils.compiler.runtime") local runtimes = get_config("runtimes") if not runtimes and target:is_plat("windows") then runtimes = get_config("vs_runtime") + if runtimes then + wprint("--vs_runtime=%s is deprecated, please use --runtimes=%s", runtimes, runtimes) + end end if not runtimes and target:is_plat("android") then runtimes = get_config("ndk_cxxstl") + if runtimes then + wprint("--ndk_cxxstl=%s is deprecated, please use --runtimes=%s", runtimes, runtimes) + end end if runtimes and not target:get("runtimes") then if type(runtimes) == "string" then |
