From 77b376f8a0d8d172c51729762f80bb394534aa41 Mon Sep 17 00:00:00 2001 From: Joe Ludwig Date: Thu, 4 Jul 2013 11:20:31 -0700 Subject: * 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. --- mp/src/devtools/bin/vpc | 28 ++++++++++++++++++++++++++++ mp/src/devtools/bin/vpc.exe | Bin 0 -> 1129472 bytes mp/src/devtools/bin/vpc_linux | Bin 0 -> 1184763 bytes mp/src/devtools/bin/vpc_osx | Bin 0 -> 1101960 bytes mp/src/devtools/bin/vpccrccheck.exe | Bin 0 -> 83296 bytes 5 files changed, 28 insertions(+) create mode 100644 mp/src/devtools/bin/vpc create mode 100644 mp/src/devtools/bin/vpc.exe create mode 100644 mp/src/devtools/bin/vpc_linux create mode 100644 mp/src/devtools/bin/vpc_osx create mode 100644 mp/src/devtools/bin/vpccrccheck.exe (limited to 'mp/src/devtools/bin') 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 Binary files /dev/null and b/mp/src/devtools/bin/vpc.exe differ diff --git a/mp/src/devtools/bin/vpc_linux b/mp/src/devtools/bin/vpc_linux new file mode 100644 index 00000000..11419d99 Binary files /dev/null and b/mp/src/devtools/bin/vpc_linux differ diff --git a/mp/src/devtools/bin/vpc_osx b/mp/src/devtools/bin/vpc_osx new file mode 100644 index 00000000..9506079b Binary files /dev/null and b/mp/src/devtools/bin/vpc_osx differ diff --git a/mp/src/devtools/bin/vpccrccheck.exe b/mp/src/devtools/bin/vpccrccheck.exe new file mode 100644 index 00000000..5a151b00 Binary files /dev/null and b/mp/src/devtools/bin/vpccrccheck.exe differ -- cgit v1.2.3