You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
561 B
15 lines
561 B
6 years ago
|
#!/bin/bash
|
||
|
|
||
|
# Build engine
|
||
|
|
||
|
cd $TRAVIS_BUILD_DIR
|
||
|
mkdir -p osx-build && cd osx-build
|
||
|
export CFLAGS="-m32"
|
||
|
export CXXFLAGS="-m32"
|
||
|
./waf configure --sdl2=~/Library/Frameworks/SDL2.framework/ --vgui=$TRAVIS_BUILD_DIR/vgui-dev --build-type=debug
|
||
|
./waf build -j2
|
||
|
# mkdir -p pkg/
|
||
|
# cp engine/libxash.dylib game_launch/xash3d mainui/libxashmenu.dylib vgui_support/libvgui_support.dylib VGUI/vgui-dev-master/lib/vgui.dylib ../scripts/xash3d.sh # pkg/
|
||
|
# cp ~/Library/Frameworks/SDL2.framework/SDL2 pkg/libSDL2.dylib
|
||
|
# tar -cjf $TRAVIS_BUILD_DIR/xash3d-osx.tar.bz2 pkg/*
|