diff options
| author | Joe Ludwig <[email protected]> | 2013-07-04 11:20:31 -0700 |
|---|---|---|
| committer | Joe Ludwig <[email protected]> | 2013-07-04 11:20:31 -0700 |
| commit | 77b376f8a0d8d172c51729762f80bb394534aa41 (patch) | |
| tree | 79897a015745704f7202eaa6648c18f2e5312df4 /mp/src/vpc_scripts/projects.vgc | |
| parent | Adding a CONTRIBUTING file so the rights that GitHub users grant to Valve wit... (diff) | |
| download | source-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/vpc_scripts/projects.vgc')
| -rw-r--r-- | mp/src/vpc_scripts/projects.vgc | 116 |
1 files changed, 116 insertions, 0 deletions
diff --git a/mp/src/vpc_scripts/projects.vgc b/mp/src/vpc_scripts/projects.vgc new file mode 100644 index 00000000..649cd85b --- /dev/null +++ b/mp/src/vpc_scripts/projects.vgc @@ -0,0 +1,116 @@ +//-----------------------------------------------------------------------------
+// PROJECTS.VGC
+//
+// Project Configurations for all Source(TM) Projects
+//-----------------------------------------------------------------------------
+
+/////////////////////////
+// Project definitions //
+/////////////////////////
+
+$Project "captioncompiler"
+{
+ "utils\captioncompiler\captioncompiler.vpc" [$WIN32]
+}
+
+
+$Project "client"
+{
+ "game\client\client_hl2mp.vpc" [($WIN32||$POSIX) && $HL2MP]
+}
+
+$Project "glview"
+{
+ "utils\glview\glview.vpc" [$WIN32]
+}
+
+$Project "height2normal"
+{
+ "utils\height2normal\height2normal.vpc" [$WIN32]
+}
+
+$Project "server"
+{
+ "game\server\server_hl2mp.vpc" [($WIN32||$POSIX) && $HL2MP]
+}
+
+$Project "mathlib"
+{
+ "mathlib\mathlib.vpc" [$WINDOWS||$X360||$POSIX]
+}
+
+$Project "motionmapper"
+{
+ "utils\motionmapper\motionmapper.vpc" [$WIN32]
+}
+
+$Project "phonemeextractor"
+{
+ "utils\phonemeextractor\phonemeextractor.vpc" [$WIN32]
+}
+
+$Project "qc_eyes"
+{
+ "utils\qc_eyes\qc_eyes.vpc" [$WIN32]
+}
+
+$Project "serverplugin_empty"
+{
+ "utils\serverplugin_sample\serverplugin_empty.vpc" [$WIN32||$POSIX]
+}
+
+$Project "tgadiff"
+{
+ "utils\tgadiff\tgadiff.vpc" [$WIN32]
+}
+
+$Project "tier1"
+{
+ "tier1\tier1.vpc" [$WINDOWS || $X360||$POSIX]
+}
+
+$Project "vbsp"
+{
+ "utils\vbsp\vbsp.vpc" [$WIN32]
+}
+
+$Project "vgui_controls"
+{
+ "vgui2\vgui_controls\vgui_controls.vpc" [$WIN32||$X360||$POSIX]
+}
+
+$Project "vice"
+{
+ "utils\vice\vice.vpc" [$WIN32]
+}
+
+$Project "vrad_dll"
+{
+ "utils\vrad\vrad_dll.vpc" [$WIN32]
+}
+
+$Project "vrad_launcher"
+{
+ "utils\vrad_launcher\vrad_launcher.vpc" [$WIN32]
+}
+
+$Project "vtf2tga"
+{
+ "utils\vtf2tga\vtf2tga.vpc" [$WIN32]
+}
+
+$Project "vtfdiff"
+{
+ "utils\vtfdiff\vtfdiff.vpc" [$WIN32]
+}
+
+$Project "vvis_dll"
+{
+ "utils\vvis\vvis_dll.vpc" [$WIN32]
+}
+
+$Project "vvis_launcher"
+{
+ "utils\vvis_launcher\vvis_launcher.vpc" [$WIN32]
+}
+
|