mirror of
https://github.com/YGGverse/xash3d-fwgs.git
synced 2025-01-09 06:37:53 +00:00
21a31ec81d
* travis: disable build, disable deploy, add free aarch64/ppc64le/s390x builds * scripts: cleanup of old CI scripts * scripts: now port to GitHub Actions * actions: fix extras checkout * github: remove codeql action, turned out not to be very useful * github: remove quiet flag on wget * github: are we allowed to use envvars? * github: add needed dependencies for linux * github: install wget for windows * scripts: convert our CPU architecture naming into what AppImage uses * github: run scripts with bash explicitly * github: first try to upload to GitHub Releases, enable amd64 win32 builds * Use our uploadtool fork * ci: include android, motomagx build for gha, refactor cirrus and travis ci scripts * gha: try to fix build * travis: try to fix build * gha: try to fix upload, fix win32 build * gha: use curl instead of wget, as it's preinstalled for windows. Fix Android build * gha: add llvm repository, install clang-12 for android * gha: motomagx: fail fast * gha: android: explicitly set clang-12 as compiler and llvm-strip-12 as strip * waifulib: xcompile: respect environment variables when using host compiler for Android * waifulib: xcompile: use correct environ dict * gha: try to fix -fuse-ld=lld with clang-12 * waifulib: xcompile: fix typo * scripts: xcompile: fix motomagx build * mainui: upgrade * gha: fix android build, last time * engine: wscript: disable crashhandler for magx
38 lines
1.0 KiB
Bash
Executable File
38 lines
1.0 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
. scripts/lib.sh
|
|
|
|
# Build engine
|
|
cd $BUILDDIR
|
|
|
|
if [ "$ARCH" = "amd64" ]; then # we need enabling 64-bit target only on Intel-compatible CPUs
|
|
AMD64="-8"
|
|
fi
|
|
|
|
# NOTE: to build with other version use --msvc_version during configuration
|
|
# NOTE: sometimes you may need to add WinSDK to %PATH%
|
|
./waf.bat configure -s "SDL2_VC" -T "debug" --prefix=`pwd` --enable-utils $AMD64 || die
|
|
./waf.bat build -v || die
|
|
./waf.bat install || die
|
|
|
|
if [ "$ARCH" = "i386" ]; then
|
|
cp SDL2_VC/lib/x86/SDL2.dll . # Install SDL2
|
|
cp vgui-dev/lib/win32_vc6/vgui.dll .
|
|
elif [ "$ARCH" = "amd64" ]; then
|
|
cp SDL2_VC/lib/x64/SDL2.dll .
|
|
else
|
|
die
|
|
fi
|
|
|
|
7z a -t7z $BUILDDIR/xash3d-fwgs-win32-$ARCH.7z -m0=lzma2 -mx=9 -mfb=64 -md=32m -ms=on *.dll *.exe *.pdb
|
|
|
|
echo "Generating VC2008 project"
|
|
rm -rf vc2008/
|
|
mkdir vc2008/
|
|
./waf.bat msdev
|
|
cp *.sln vc2008/
|
|
find . -name "*.vcproj" -exec cp --parents \{\} vc2008/ \;
|
|
rm -rf vc2008/vc2008 # HACKHACK
|
|
|
|
7z a -t7z $BUILDDIR/xash3d-fwgs-vc2008-sln-$ARCH.7z -m0=lzma2 -mx=9 -mfb=64 -md=32m -ms=on -r vc2008
|