2023-04-24 18:06:58 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
git submodule init && git submodule update
|
2023-11-08 19:58:33 +01:00
|
|
|
./waf configure -T release --sanitize=address,undefined --disable-warns --tests --prefix=out/ $* &&
|
2023-04-24 18:06:58 +02:00
|
|
|
./waf install &&
|
|
|
|
cd out &&
|
|
|
|
DYLD_LIBRARY_PATH=bin/ ./unittest || exit 1
|