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.
16 lines
521 B
16 lines
521 B
#!/bin/bash |
|
|
|
. scripts/lib.sh |
|
|
|
# Build engine |
|
cd $TRAVIS_BUILD_DIR |
|
./waf configure --sdl2=$TRAVIS_BUILD_DIR/SDL2_VC --vgui=$TRAVIS_BUILD_DIR/vgui-dev --build-type=debug || die |
|
./waf build -j2 || die |
|
|
|
cp $TRAVIS_BUILD_DIR/SDL2_VC/lib/x86/SDL2.dll . # Install SDL2 |
|
cp build/vgui_support/vgui_support.dll . |
|
cp vgui-dev/lib/win32_vc6/vgui.dll . |
|
cp build/engine/xash.dll . |
|
cp build/mainui/menu.dll . |
|
cp build/game_launch/xash3d.exe . |
|
7z a -t7z $TRAVIS_BUILD_DIR/xash3d-vc.7z -m0=lzma2 -mx=9 -mfb=64 -md=32m -ms=on *.dll *.exe
|
|
|