diff options
Diffstat (limited to 'xmake.lua')
| -rw-r--r-- | xmake.lua | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -154,6 +154,10 @@ task("bundle") import("detect.tools.find_7z") import("detect.sdks.find_vcpkgdir") + if not is_host("windows") then + raise("'xmake bundle' not currently supported on this platform") + end + local zip_cmd = find_7z() if not zip_cmd then raise("unable to find zip tool") |