Skip to content

Commit 9f7e72a

Browse files
committed
remove macdeploy qt find tool
1 parent 27f4b0b commit 9f7e72a

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

xmake/modules/detect/tools/find_macdeployqt.lua

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,14 @@ function main(opt)
4141
local program = find_program(opt.program or "macdeployqt")
4242

4343
-- If not found, try to find it in the Qt installation
44-
if not program then
45-
local qt = find_qt()
46-
if qt and qt.bindir then
47-
local macdeployqt_path = path.join(qt.bindir, "macdeployqt")
48-
if os.isfile(macdeployqt_path) then
49-
program = {program = macdeployqt_path}
50-
end
51-
end
52-
end
44+
-- if not program then
45+
-- local qt = find_qt()
46+
-- if qt and qt.bindir then
47+
-- local macdeployqt_path = path.join(qt.bindir, "macdeployqt")
48+
-- if os.isfile(macdeployqt_path) then
49+
-- program = {program = macdeployqt_path}
50+
-- end
51+
-- end
52+
-- end
5353
return program
5454
end

0 commit comments

Comments
 (0)