isocline: remove limits (#4945)

pull/4952/head
Chi Huu Huynh 3 months ago committed by GitHub
parent 9fefb97834
commit 393b21c8e4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 26
      packages/i/isocline/xmake.lua

@ -4,26 +4,38 @@ package("isocline")
set_license("MIT")
add_urls("https://github.com/daanx/isocline.git")
add_versions("2022.01.16", "762717b5acc7d8baf64faeb5320ae4b85cf98aac")
add_deps("cmake")
on_install("linux", "macosx", "bsd", "mingw", "windows", function (package)
on_install(function (package)
io.replace("src/completers.c", "__finddata64_t", "_finddatai64_t", {plain = true})
local configs = {}
table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:debug() and "Debug" or "Release"))
table.insert(configs, "-DBUILD_SHARED_LIBS=" .. (package:config("shared") and "ON" or "OFF"))
if package:is_plat("windows") and package:config("shared") then
table.insert(configs, "-DCMAKE_WINDOWS_EXPORT_ALL_SYMBOLS=ON")
end
import("package.tools.cmake").build(package, configs, {buildir = "build"})
os.cp("include", package:installdir())
os.trycp("build/*.a", package:installdir("lib"))
os.trycp("build/*.dylib", package:installdir("lib"))
os.trycp("build/*.so", package:installdir("lib"))
os.trycp("build/*.lib", package:installdir("lib"))
os.trycp("build/*.dll", package:installdir("bin"))
os.trycp("build/**.a", package:installdir("lib"))
os.trycp("build/**.dylib", package:installdir("lib"))
os.trycp("build/**.so", package:installdir("lib"))
os.trycp("build/**.lib", package:installdir("lib"))
os.trycp("build/**.dll", package:installdir("bin"))
end)
on_test(function (package)
assert(package:has_cfuncs("ic_set_history", {includes = "isocline.h"}))
assert(package:check_cxxsnippets({test = [[
void test() {
ic_set_history("history.txt", 100);
}
]]}, {configs = {languages = "c++11"}, includes = "isocline.h"}))
end)

Loading…
Cancel
Save