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.
41 lines
1.5 KiB
41 lines
1.5 KiB
package("isocline") |
|
set_homepage("https://github.com/daanx/isocline") |
|
set_description("Isocline is a portable GNU readline alternative ") |
|
set_license("MIT") |
|
|
|
add_urls("https://github.com/daanx/isocline.git") |
|
|
|
add_versions("2022.01.16", "762717b5acc7d8baf64faeb5320ae4b85cf98aac") |
|
|
|
add_deps("cmake") |
|
|
|
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")) |
|
end) |
|
|
|
on_test(function (package) |
|
assert(package:check_cxxsnippets({test = [[ |
|
void test() { |
|
ic_set_history("history.txt", 100); |
|
} |
|
]]}, {configs = {languages = "c++11"}, includes = "isocline.h"})) |
|
end)
|
|
|