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.
62 lines
2.1 KiB
62 lines
2.1 KiB
package("pthreads4w") |
|
|
|
set_homepage("https://sourceforge.net/projects/pthreads4w/") |
|
set_description("POSIX Threads for Win32") |
|
|
|
set_urls("https://github.com/xmake-mirror/pthreads4w/archive/$(version).tar.gz", |
|
"https://github.com/xmake-mirror/pthreads4w.git", |
|
"https://gitee.com/xmake-mirror/pthreads4w.git") |
|
|
|
add_versions("3.0.0", "31f20963840c26d78fb20224577b7e677018b3eb3000c3570db88528043adc20") |
|
|
|
add_includedirs("include/pthread") |
|
|
|
if is_host("linux", "macosx") and is_plat("mingw") then |
|
add_deps("autoconf", "automake") |
|
end |
|
|
|
on_install("windows", function (package) |
|
local target = "VC" |
|
if not package:config("shared") then |
|
target = target .. "-static" |
|
end |
|
if package:debug() then |
|
target = target .. "-debug" |
|
end |
|
import("package.tools.nmake").build(package, {"-f", "Makefile", target}) |
|
os.cp("*.lib", package:installdir("lib")) |
|
os.cp("*.h", package:installdir("include/pthread")) |
|
if package:config("shared") then |
|
os.cp("*.dll", package:installdir("bin")) |
|
package:addenv("PATH", "bin") |
|
end |
|
if package:debug() then |
|
os.cp("*.pdb", package:installdir("lib")) |
|
end |
|
end) |
|
|
|
on_install("mingw@macosx,linux", function (package) |
|
local configs = {} |
|
if package:config("shared") then |
|
table.insert(configs, "--enable-shared=yes") |
|
else |
|
table.insert(configs, "--enable-shared=no") |
|
end |
|
if package:debug() then |
|
table.insert(configs, "--enable-debug") |
|
end |
|
import("package.tools.autoconf").configure(package, configs) |
|
|
|
local target = "GC" |
|
if not package:config("shared") then |
|
target = target .. "-static" |
|
end |
|
if package:debug() then |
|
target = target .. "-debug" |
|
end |
|
os.vrunv("make", {"V=1", target}) |
|
end) |
|
|
|
on_test(function (package) |
|
assert(package:has_cfuncs("pthread_create", {includes = "pthread.h"})) |
|
end)
|
|
|