mirror of
https://github.com/wesnoth/wesnoth
synced 2025-04-30 12:10:23 +00:00
23 lines
653 B
Bash
Executable File
23 lines
653 B
Bash
Executable File
#!/bin/bash
|
|
|
|
HOMEBREW_NO_AUTO_UPDATE=1 brew install ccache scons
|
|
export PATH="/usr/local/opt/gettext/bin:/usr/local/opt/ccache/libexec:$PWD/utils/travis:$PATH"
|
|
export CC=ccache-clang
|
|
export CXX=ccache-clang++
|
|
export CCACHE_MAXSIZE=3000M
|
|
export CCACHE_COMPILERCHECK=content
|
|
export CCACHE_DIR="$CACHE_DIR"
|
|
./projectfiles/Xcode/Fix_Xcode_Dependencies
|
|
|
|
scons translations build=release --debug=time nls=true jobs=2 || exit 1
|
|
|
|
cd ./projectfiles/Xcode
|
|
|
|
xcodebuild CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO -project "The Battle for Wesnoth.xcodeproj" -target "The Battle for Wesnoth" -configuration "$CFG"
|
|
EXIT_VAL=$?
|
|
|
|
ccache -s
|
|
ccache -z
|
|
|
|
exit $EXIT_VAL
|