diff options
| author | ruki <[email protected]> | 2023-09-08 10:14:22 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-09-08 10:14:22 +0800 |
| commit | 0c6cb1962f9e836eebdac1a7072dd77cd0841ba6 (patch) | |
| tree | f97bd80b77df26d17ee8d43bd97d7b041313eb33 /xmake/modules | |
| parent | 94d538bc662124b6f4f5f06b2954bd6e2c633a6a (diff) | |
| parent | 5a4a6f05e2d59249eae9094b59c5cac6a9f145d8 (diff) | |
Merge pull request #4175 from darcy-shen/da/qtwasm2
rules for Qt 6 on WASM
Diffstat (limited to 'xmake/modules')
| -rw-r--r-- | xmake/modules/detect/sdks/find_qt.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/modules/detect/sdks/find_qt.lua b/xmake/modules/detect/sdks/find_qt.lua index f94f3556e..3700df53d 100644 --- a/xmake/modules/detect/sdks/find_qt.lua +++ b/xmake/modules/detect/sdks/find_qt.lua @@ -66,7 +66,7 @@ function _find_sdkdir(sdkdir, sdkver) end table.insert(subdirs, path.join(sdkver or "*", "android", "bin")) elseif is_plat("wasm") then - table.insert(subdirs, path.join(sdkver or "*", "wasm_32", "bin")) + table.insert(subdirs, path.join(sdkver or "*", "wasm_*", "bin")) else table.insert(subdirs, path.join(sdkver or "*", "*", "bin")) end |
