Skip to content

Commit

Permalink
fix qmake
Browse files Browse the repository at this point in the history
  • Loading branch information
waruqi committed May 25, 2022
1 parent 1f82be4 commit e445455
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xmake/modules/detect/sdks/find_qt.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e445455

Please sign in to comment.