mirror of
https://github.com/TokTok/c-toxcore
synced 2026-06-07 04:32:06 +00:00
08cd61387e
This one is not allowed to fail and ensures that toxcore can at least be built for OSX.
16 lines
158 B
Bash
16 lines
158 B
Bash
#!/bin/sh
|
|
|
|
CMAKE=cmake
|
|
CMAKE_EXTRA_FLAGS="$CMAKE_EXTRA_FLAGS -DFORMAT_TEST=ON"
|
|
NPROC=`nproc`
|
|
CURDIR=$PWD
|
|
RUN_TESTS=true
|
|
|
|
RUN() {
|
|
"$@"
|
|
}
|
|
|
|
TESTS() {
|
|
"$@"
|
|
}
|