aboutsummaryrefslogtreecommitdiff
path: root/mp/src/devtools/bin
diff options
context:
space:
mode:
authorJoe Ludwig <[email protected]>2013-07-04 11:20:31 -0700
committerJoe Ludwig <[email protected]>2013-07-04 11:20:31 -0700
commit77b376f8a0d8d172c51729762f80bb394534aa41 (patch)
tree79897a015745704f7202eaa6648c18f2e5312df4 /mp/src/devtools/bin
parentAdding a CONTRIBUTING file so the rights that GitHub users grant to Valve wit... (diff)
downloadsource-sdk-2013-77b376f8a0d8d172c51729762f80bb394534aa41.tar.xz
source-sdk-2013-77b376f8a0d8d172c51729762f80bb394534aa41.zip
* 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.
Diffstat (limited to 'mp/src/devtools/bin')
-rw-r--r--mp/src/devtools/bin/vpc28
-rw-r--r--mp/src/devtools/bin/vpc.exebin0 -> 1129472 bytes
-rw-r--r--mp/src/devtools/bin/vpc_linuxbin0 -> 1184763 bytes
-rw-r--r--mp/src/devtools/bin/vpc_osxbin0 -> 1101960 bytes
-rw-r--r--mp/src/devtools/bin/vpccrccheck.exebin0 -> 83296 bytes
5 files changed, 28 insertions, 0 deletions
diff --git a/mp/src/devtools/bin/vpc b/mp/src/devtools/bin/vpc
new file mode 100644
index 00000000..2992aed4
--- /dev/null
+++ b/mp/src/devtools/bin/vpc
@@ -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
diff --git a/mp/src/devtools/bin/vpc.exe b/mp/src/devtools/bin/vpc.exe
new file mode 100644
index 00000000..0c084858
--- /dev/null
+++ b/mp/src/devtools/bin/vpc.exe
Binary files differ
diff --git a/mp/src/devtools/bin/vpc_linux b/mp/src/devtools/bin/vpc_linux
new file mode 100644
index 00000000..11419d99
--- /dev/null
+++ b/mp/src/devtools/bin/vpc_linux
Binary files differ
diff --git a/mp/src/devtools/bin/vpc_osx b/mp/src/devtools/bin/vpc_osx
new file mode 100644
index 00000000..9506079b
--- /dev/null
+++ b/mp/src/devtools/bin/vpc_osx
Binary files differ
diff --git a/mp/src/devtools/bin/vpccrccheck.exe b/mp/src/devtools/bin/vpccrccheck.exe
new file mode 100644
index 00000000..5a151b00
--- /dev/null
+++ b/mp/src/devtools/bin/vpccrccheck.exe
Binary files differ