Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
waruqi committed Jan 31, 2024
1 parent 01ab316 commit 8239c46
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion xmake/modules/package/tools/cmake.lua
Original file line number Diff line number Diff line change
Expand Up @@ -912,7 +912,11 @@ function _install_for_make(package, configs, opt)
print("make")
os.vexecv("make", argv)
print("make install")
os.vexecv("make", {"-j" .. jobs, "install"})
if package:name() == "bullet3" or package:name() == "libsdl" then
os.vexecv("make", {"-d", "--trace", "install"})
else
os.vexecv("make", {"install"})
end
end
end

Expand Down

0 comments on commit 8239c46

Please sign in to comment.