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.
38 lines
1.6 KiB
38 lines
1.6 KiB
4 years ago
|
package("effcee")
|
||
|
|
||
|
set_homepage("https://github.com/google/effcee")
|
||
|
set_description("Effcee is a C++ library for stateful pattern matching of strings.")
|
||
|
set_license("Apache-2.0")
|
||
|
|
||
|
add_urls("https://github.com/google/effcee/archive/v$(version).tar.gz")
|
||
|
add_versions("2019.1", "0c49849859d356f39273fa01f674eaf687fd5e5fe83c94510784c2279bfb793d")
|
||
|
|
||
|
add_deps("cmake")
|
||
|
add_deps("re2")
|
||
|
|
||
|
on_install("macosx", "linux", "windows", function (package)
|
||
|
|
||
|
-- add re2 include
|
||
|
local fetchinfo = package:dep("re2"):fetch()
|
||
|
local cxflags = {}
|
||
|
for _, includedir in ipairs(fetchinfo.sysincludedirs or fetchinfo.includedirs) do
|
||
|
table.insert(cxflags, "-I" .. includedir)
|
||
|
end
|
||
|
|
||
|
io.gsub(path.join("cmake", "setup_build.cmake"), "find_host_package%(", "#")
|
||
|
io.gsub("CMakeLists.txt", "add_subdirectory%(third_party%)", "#")
|
||
|
local configs = {"-DEFFCEE_BUILD_SAMPLES=OFF", "-DEFFCEE_BUILD_TESTING=OFF"}
|
||
|
table.insert(configs, "-DCMAKE_C_FLAGS=" .. table.concat(cxflags, ";"))
|
||
|
table.insert(configs, "-DCMAKE_CXX_FLAGS=" .. table.concat(cxflags, ";"))
|
||
|
table.insert(configs, "-DEFFCEE_ENABLE_SHARED_CRT=" .. (package:config("vs_runtime"):startswith("MT") and "OFF" or "ON"))
|
||
|
import("package.tools.cmake").install(package, configs)
|
||
|
end)
|
||
|
|
||
|
on_test(function (package)
|
||
|
assert(package:check_cxxsnippets({test = [[
|
||
|
void test() {
|
||
|
auto opt = effcee::Options().SetChecksName("checks");
|
||
|
}
|
||
|
]]}, {configs = {languages = "c++11"}, includes = "effcee/effcee.h"}))
|
||
|
end)
|