mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
e59fd26d49
Tests for Windows are disabled for now, until we figure out which tests can successfully run on wine and select only those.
14 lines
99 B
Bash
14 lines
99 B
Bash
#!/bin/sh
|
|
|
|
CMAKE=cmake
|
|
NPROC=`sysctl -n hw.ncpu`
|
|
CURDIR=$PWD
|
|
|
|
RUN() {
|
|
"$@"
|
|
}
|
|
|
|
TESTS() {
|
|
"$@"
|
|
}
|