Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
waruqi committed Feb 1, 2024
1 parent 6d90c4c commit 684a98e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions xmake/modules/package/tools/cmake.lua
Original file line number Diff line number Diff line change
Expand Up @@ -909,12 +909,13 @@ function _install_for_make(package, configs, opt)
os.vrunv(make, argv)
os.vrunv(make, {"install"})
else
print("make")
os.vexecv("make", argv)
print("make install")
if package:name() == "bullet3" or package:name() == "libsdl" then
print("make")
os.vexecv("make", table.join("-d", argv))
print("make install")
os.vexecv("make", {"-d", "install"})
else
os.vexecv("make", argv)
os.vexecv("make", {"install"})
end
end
Expand Down

0 comments on commit 684a98e

Please sign in to comment.