diff options
| author | ruki <[email protected]> | 2022-05-25 22:36:35 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2022-05-25 22:36:35 +0800 |
| commit | e445455ef96d7004735a7394529f5876c3b73822 (patch) | |
| tree | cdc52e2c40fed4f9f520d0da5dcc144b3c6d0ef5 | |
| parent | 1f82be4455b060718cd8ff5c67f97ccafe97ab61 (diff) | |
fix qmake
| -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 f9acd68c7..d6734b292 100644 --- a/xmake/modules/detect/sdks/find_qt.lua +++ b/xmake/modules/detect/sdks/find_qt.lua @@ -132,7 +132,7 @@ end -- find qmake function _find_qmake(sdkdir, sdkver) local sdkdir, qmakefile = _find_sdkdir(sdkdir, sdkver) - local qmake = find_tool(qmakefile, {paths = sdkdir and path.join(sdkdir, "bin")}) + local qmake = find_tool(qmakefile or "qmake", {paths = sdkdir and path.join(sdkdir, "bin")}) if qmake then return qmake.program end |
