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.
 
 
 

54 lines
2.7 KiB

package("dynareadout")
set_homepage("https://github.com/PucklaJ/dynareadout")
set_description("Ansi C library for parsing binary output files of LS Dyna (d3plot, binout)")
add_urls("https://github.com/PucklaJ/dynareadout/archive/refs/tags/$(version).tar.gz",
"https://github.com/PucklaJ/dynareadout.git")
add_versions("0.1", "833c8516c77ab57c56e942692e1fea2c96c50b7adfebd7f6f633ed43aaf46a56")
add_versions("0.2", "47c147f1af092b8f2aad1b883d92e6fa76f0096b911b0d4cca2ed675d4f445bd")
add_versions("0.3", "c73949c474460c06add2ccfc4a22c3af066904558436a216f095b820153be670")
add_versions("0.4", "6e05daa384eb9163cb23ea9d85afa528d0b781cb939fdd1b2fe4c69dc44452bb")
add_configs("cpp", {description = "Build the C++ bindings", default = true, type = "boolean"})
add_configs("profiling", {description = "Build with profiling features", default = false, type = "boolean"})
on_load(function (package)
if package:config("cpp") then
package:add("links", "d3plot_cpp", "binout_cpp", "binout", "d3plot")
else
package:add("links", "binout", "d3plot")
end
if package:config("profiling") then
package:add("links", "profiling")
end
end)
on_install("windows", "linux", "macosx", "mingw", function (package)
local configs = {}
configs.build_test = "n"
configs.build_cpp = package:config("cpp") and "y" or "n"
configs.profiling = package:config("profiling") and "y" or "n"
import("package.tools.xmake").install(package, configs)
end)
on_test(function (package)
assert(package:has_cfuncs("binout_open", {includes = "binout.h", configs = {languages = "ansi"}}))
assert(package:has_cfuncs("d3plot_open", {includes = "d3plot.h", configs = {languages = "ansi"}}))
if package:config("cpp") then
assert(package:has_cxxtypes("dro::Binout", {includes = "binout.hpp", configs = {languages = "cxx17"}}))
assert(package:has_cxxtypes("dro::D3plot", {includes = "d3plot.hpp", configs = {languages = "cxx17"}}))
assert(package:has_cxxtypes("dro::Array<int32_t>", {includes = {"array.hpp", "cstdint"}, configs = {languages = "cxx17"}}))
end
if package:config("profiling") then
assert(package:check_csnippets({test = [[
void test(int argc, char** argv) {
BEGIN_PROFILE_FUNC();
BEGIN_PROFILE_SECTION(mid_section);
END_PROFILE_SECTION(mid_section);
END_PROFILE_FUNC();
END_PROFILING("dynareadout_test_profiling.txt");
}
]]}, {includes = "profiling.h", configs = {languages = "ansi"}}))
end
end)