2
0

xmake.lua 315 B

12345678910
  1. package("libc++")
  2. set_homepage("https://libcxx.llvm.org/")
  3. set_description("libc++ is a new implementation of the C++ standard library, targeting C++11 and above.")
  4. on_fetch(function (package, opt)
  5. if opt.system then
  6. return package:find_package("system::c++")
  7. end
  8. end)