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.
29 lines
996 B
29 lines
996 B
package("memorymapping") |
|
|
|
set_homepage("https://github.com/NimbusKit/memorymapping") |
|
set_description("fmemopen port library") |
|
|
|
set_urls("https://github.com/NimbusKit/memorymapping.git") |
|
|
|
add_versions("2014.12.21", "79ce0ddd0de4b11e4944625eb866290368f867c0") |
|
|
|
on_install("android", "macosx", "iphoneos", function (package) |
|
io.writefile("xmake.lua", [[ |
|
add_rules("mode.debug", "mode.release") |
|
target("fmemopen") |
|
set_kind("$(kind)") |
|
add_files("src/*.c") |
|
add_headerfiles("src/*.h") |
|
]]) |
|
local configs = {} |
|
if package:config("shared") then |
|
configs.kind = "shared" |
|
elseif package:config("pic") ~= false then |
|
configs.cxflags = "-fPIC" |
|
end |
|
import("package.tools.xmake").install(package, configs) |
|
end) |
|
|
|
on_test(function (package) |
|
assert(package:has_cfuncs("fmemopen", {includes = {"stdio.h", "fmemopen.h"}})) |
|
end)
|
|
|