diff options
| author | jingkaimori <[email protected]> | 2023-03-27 00:14:47 +0800 |
|---|---|---|
| committer | jingkaimori <[email protected]> | 2023-03-27 00:14:47 +0800 |
| commit | 9d190b54a89b2355e3a003b977fb65a4426656ae (patch) | |
| tree | 4c653c3bf11ee30400b8f3afa2ec4070895d4c45 | |
| parent | 647069af7d4a23016e513172066faf57b1d6b3b8 (diff) | |
adjust code style
| -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 edefe0310..bd3ff97bf 100644 --- a/xmake/modules/detect/sdks/find_qt.lua +++ b/xmake/modules/detect/sdks/find_qt.lua @@ -125,7 +125,7 @@ function _find_sdkdir(sdkdir, sdkver) -- special case for android on windows, where qmake is a .bat from version 6.3 -- this case also applys to wasm - if is_host("windows") and (is_plat("android", "wasm")) then + if is_host("windows") and is_plat("android", "wasm") then local qmake = find_file("qmake.bat", paths, {suffixes = subdirs}) if qmake then return path.directory(path.directory(qmake)), qmake |
