Add extsources to stb (#605)

pull/599/head^2
ImperatorS79 4 years ago committed by GitHub
parent caac3eedff
commit 6acf7687f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      packages/s/stb/xmake.lua

@ -6,6 +6,12 @@ package("stb")
add_urls("https://github.com/nothings/stb.git")
add_versions("0.0", "3a1174060a7dd4eb652d4e6854bc4cd98c159200")
if is_plat("mingw") and is_subhost("msys") then
add_extsources("pacman::stb")
elseif is_host("linux") then
add_extsources("pacman::stb", "apt::libstb-dev")
end
on_install(function (package)
os.cp("*.h", package:installdir("include"))

Loading…
Cancel
Save