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:
28
devtools/bin/vpc
Normal file
28
devtools/bin/vpc
Normal 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
BIN
devtools/bin/vpc.exe
Normal file
Binary file not shown.
BIN
devtools/bin/vpc_linux
Normal file
BIN
devtools/bin/vpc_linux
Normal file
Binary file not shown.
BIN
devtools/bin/vpc_osx
Normal file
BIN
devtools/bin/vpc_osx
Normal file
Binary file not shown.
BIN
devtools/bin/vpccrccheck.exe
Normal file
BIN
devtools/bin/vpccrccheck.exe
Normal file
Binary file not shown.
Reference in New Issue
Block a user