Skip to content

Commit

Permalink
isocline: remove limits (#4945)
Browse files Browse the repository at this point in the history
  • Loading branch information
Chi-EEE authored Aug 16, 2024
1 parent 9fefb97 commit 393b21c
Showing 1 changed file with 19 additions and 7 deletions.
26 changes: 19 additions & 7 deletions packages/i/isocline/xmake.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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)

0 comments on commit 393b21c

Please sign in to comment.