mirror of
https://github.com/waku-org/nwaku.git
synced 2025-01-15 17:35:45 +00:00
38 lines
1.2 KiB
Plaintext
38 lines
1.2 KiB
Plaintext
|
mode = ScriptMode.Verbose
|
||
|
|
||
|
packageName = "nat_traversal"
|
||
|
version = "0.0.1"
|
||
|
author = "Status Research & Development GmbH"
|
||
|
description = "miniupnpc and libnatpmp wrapper"
|
||
|
license = "Apache License 2.0 or MIT"
|
||
|
installDirs = @["vendor"]
|
||
|
|
||
|
### Dependencies
|
||
|
requires "nim >= 0.19.0", "stew"
|
||
|
|
||
|
proc compileStaticLibraries() =
|
||
|
var cc = getEnv("CC", "")
|
||
|
if cc.len == 0:
|
||
|
cc = "gcc"
|
||
|
putEnv("CC", cc)
|
||
|
|
||
|
withDir "vendor/miniupnp/miniupnpc":
|
||
|
when defined(windows):
|
||
|
exec("mingw32-make -f Makefile.mingw libminiupnpc.a")
|
||
|
else:
|
||
|
exec("make libminiupnpc.a")
|
||
|
withDir "vendor/libnatpmp-upstream":
|
||
|
when defined(windows):
|
||
|
# We really need to override CC on the Make command line, here, because of:
|
||
|
# https://github.com/miniupnp/libnatpmp/blob/4536032ae32268a45c073a4d5e91bbab4534773a/Makefile#L51
|
||
|
exec("mingw32-make CC=\"" & cc & "\" CFLAGS=\"-Wall -Os -DWIN32 -DNATPMP_STATICLIB -DENABLE_STRNATPMPERR -DNATPMP_MAX_RETRIES=4\" libnatpmp.a")
|
||
|
else:
|
||
|
exec("make CFLAGS=\"-Wall -Os -DENABLE_STRNATPMPERR -DNATPMP_MAX_RETRIES=4\" libnatpmp.a")
|
||
|
|
||
|
task buildBundledLibs, "build bundled libraries":
|
||
|
compileStaticLibraries()
|
||
|
|
||
|
before install:
|
||
|
compileStaticLibraries()
|
||
|
|