diff --git a/build-mac.sh b/build-mac.sh index 1f6f4091c5..0856393caa 100644 --- a/build-mac.sh +++ b/build-mac.sh @@ -8,13 +8,18 @@ export LIBRARY_PATH=$LIBRARY_PATH:/usr/local/lib:/usr/lib/ # Build type if [ "$1" == "playback" ] - then +then echo "Using Playback build config" else echo "Using Netplay build config" CMAKE_FLAGS+=" -DSLIPPI_PLAYBACK=false" fi +if [ "$CI" == "true" ] +then + CMAKE_FLAGS+=" -DMACOS_CODE_SIGNING=OFF" +fi + # Move into the build directory, run CMake, and compile the project mkdir -p build pushd build