flatbuffers: support more platform (#5731)

pull/5732/head
star9029 3 weeks ago committed by GitHub
parent 5f141f87e4
commit f318d9d4e1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 33
      packages/f/flatbuffers/xmake.lua

@ -1,11 +1,11 @@
package("flatbuffers")
set_homepage("http://google.github.io/flatbuffers/")
set_description("FlatBuffers is a cross platform serialization library architected for maximum memory efficiency.")
set_license("Apache-2.0")
add_urls("https://github.com/google/flatbuffers/archive/$(version).zip",
add_urls("https://github.com/google/flatbuffers/archive/refs/tags/$(version).zip",
"https://github.com/google/flatbuffers.git")
add_versions("v1.12.0", "4b8b21adbfe8a74b90604161afcf87c125a26b86c99327e7a04525080606536c")
add_versions("v2.0.0", "ffd68aebdfb300c9e82582ea38bf4aa9ce65c77344c94d5047f3be754cc756ea")
add_versions("v23.1.21", "48597d6a6f8ca67a02ae8d8494b3bfc9136eb93da60a538d5bfc024f7c564f97")
@ -13,17 +13,32 @@ package("flatbuffers")
add_versions("v24.3.25", "e706f5eb6ca8f78e237bf3f7eccffa1c5ec9a96d3c1c938f08dc09aab1884528")
add_deps("cmake")
on_install("windows", "linux", "macosx", "mingw", "android", "iphoneos", "cross", function(package)
on_install(function(package)
io.replace("CMakeLists.txt",
"RUNTIME DESTINATION ${CMAKE_INSTALL_LIBDIR}",
"RUNTIME DESTINATION bin", {plain = true})
if not package:is_cross() then
package:addenv("PATH", "bin")
end
local configs = {"-DFLATBUFFERS_BUILD_TESTS=OFF"}
table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:debug() and "Debug" or "Release"))
table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:is_debug() and "Debug" or "Release"))
table.insert(configs, "-DFLATBUFFERS_BUILD_SHAREDLIB=" .. (package:config("shared") and "ON" or "OFF"))
if package:is_cross() then
table.insert(configs, "-DFLATBUFFERS_BUILD_FLATC=OFF")
table.insert(configs, "-DFLATBUFFERS_BUILD_FLATHASH=OFF")
table.insert(configs, "-DFLATBUFFERS_BUILD_FLATLIB=" .. (package:config("shared") and "OFF" or "ON"))
if package:config("shared") and package:is_plat("windows") then
table.insert(configs, "-DCMAKE_WINDOWS_EXPORT_ALL_SYMBOLS=ON")
end
table.insert(configs, "-DFLATBUFFERS_BUILD_FLATC=" .. (package:is_cross() and "OFF" or "ON"))
table.insert(configs, "-DFLATBUFFERS_BUILD_FLATHASH=" .. (package:is_cross() and "OFF" or "ON"))
import("package.tools.cmake").install(package, configs)
if not package:is_cross() then
package:addenv("PATH", "bin")
if package:is_plat("windows") and package:is_debug() then
local dir = package:installdir(package:config("shared") and "bin" or "lib")
os.trycp(path.join(package:buildir(), "flatc.pdb"), package:installdir("bin"))
os.trycp(path.join(package:buildir(), "flatbuffers.pdb"), dir)
end
end)

Loading…
Cancel
Save