package An official xmake package repository
https://xrepo.xmake.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
315 B
11 lines
315 B
2 years ago
|
package("libc++")
|
||
|
|
||
|
set_homepage("https://libcxx.llvm.org/")
|
||
|
set_description("libc++ is a new implementation of the C++ standard library, targeting C++11 and above.")
|
||
|
|
||
|
on_fetch(function (package, opt)
|
||
|
if opt.system then
|
||
|
return package:find_package("system::c++")
|
||
|
end
|
||
|
end)
|