mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-01 12:57:52 +00:00
15 lines
274 B
Bash
15 lines
274 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
#if OS is linux or is not set
|
||
|
if [ "$TRAVIS_OS_NAME" = linux -o -z "$TRAVIS_OS_NAME" ]; then
|
||
|
mkdir build && cd build
|
||
|
cmake ..
|
||
|
make -j4
|
||
|
elif [ "$TRAVIS_OS_NAME" = osx ]; then
|
||
|
mkdir build && cd build
|
||
|
cmake .. -GXcode
|
||
|
xcodebuild
|
||
|
fi
|