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.
 
 
 

24 lines
1.2 KiB

package("yaml-cpp")
set_homepage("https://github.com/jbeder/yaml-cpp/")
set_description("A YAML parser and emitter in C++")
set_license("MIT")
add_urls("https://github.com/jbeder/yaml-cpp/archive/yaml-cpp-$(version).tar.gz")
add_versions("0.6.3", "77ea1b90b3718aa0c324207cb29418f5bced2354c2e483a9523d98c3460af1ed")
add_versions("0.7.0", "43e6a9fcb146ad871515f0d0873947e5d497a1c9c60c58cb102a97b47208b7c3")
add_deps("cmake")
on_install("windows", "linux", "macosx", "mingw", function (package)
local configs = {"-DYAML_CPP_BUILD_TESTS=OFF"}
table.insert(configs, "-DYAML_BUILD_SHARED_LIBS=" .. (package:config("shared") and "ON" or "OFF"))
if package:is_plat("windows") then
table.insert(configs, "-DYAML_MSVC_SHARED_RT=" .. (package:config("vs_runtime"):startswith("MT") and "OFF" or "ON"))
end
import("package.tools.cmake").install(package, configs, {buildir = os.tmpfile() .. ".dir"})
package:addenv("PATH", "bin")
end)
on_test(function (package)
assert(package:has_cxxtypes("YAML::Parser", {configs = {languages = "c++11"}, includes = "yaml-cpp/yaml.h"}))
end)