1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-09-19 03:56:10 +08:00

* Switched the SDK from checked-in projects to VPC, the Valve Project Creator. See the Getting Started document on the wiki for details.

* Pulled in bug fixes from HL2 and HL2MP.
This commit is contained in:
Joe Ludwig
2013-07-04 11:20:31 -07:00
parent 7502ba9583
commit 3569c0f8f5
191 changed files with 17837 additions and 41949 deletions

28
devtools/bin/vpc Normal file
View File

@ -0,0 +1,28 @@
#!/bin/bash
OS=`uname`
SCRIPTPATH=`dirname $0`
FORCEARG=""
case $OS in
"Darwin")
BINNAME=vpc_osx
;;
"Linux")
BINNAME=vpc_linux
;;
*)
echo "Couldn't find appropriate VPC binary, fix the script."
exit -1
;;
esac
if [ $OS == "Darwin" ]; then
$SCRIPTPATH/$BINNAME $@
elif [ $OS == "Linux" ]; then
$SCRIPTPATH/$BINNAME $@
else
echo "Couldn't find appropriate VPC binary, fix the script."
exit -1
fi

BIN
devtools/bin/vpc.exe Normal file

Binary file not shown.

BIN
devtools/bin/vpc_linux Normal file

Binary file not shown.

BIN
devtools/bin/vpc_osx Normal file

Binary file not shown.

Binary file not shown.