summaryrefslogtreecommitdiff
path: root/choreoobjects
diff options
context:
space:
mode:
authorFluorescentCIAAfricanAmerican <[email protected]>2020-04-22 12:56:21 -0400
committerFluorescentCIAAfricanAmerican <[email protected]>2020-04-22 12:56:21 -0400
commit3bf9df6b2785fa6d951086978a3e66f49427166a (patch)
tree2c0f1f0c63c4832882bc93814ebd2c2b1c6224e5 /choreoobjects
downloadarchived-source-engine-2018-hl2-src-master.tar.xz
archived-source-engine-2018-hl2-src-master.zip
Diffstat (limited to 'choreoobjects')
-rw-r--r--choreoobjects/choreoobjects.vpc46
1 files changed, 46 insertions, 0 deletions
diff --git a/choreoobjects/choreoobjects.vpc b/choreoobjects/choreoobjects.vpc
new file mode 100644
index 0000000..2b80c05
--- /dev/null
+++ b/choreoobjects/choreoobjects.vpc
@@ -0,0 +1,46 @@
+//-----------------------------------------------------------------------------
+// CHOREOOBJECTS.VPC
+//
+// Project Script
+//-----------------------------------------------------------------------------
+
+$macro SRCDIR ".."
+
+$include "$SRCDIR\vpc_scripts\source_lib_base.vpc"
+
+$Configuration
+{
+ $Compiler
+ {
+ $AdditionalIncludeDirectories "$BASE;..\game\shared;..\utils\common"
+ }
+}
+
+$Project "choreoobjects"
+{
+ $Folder "Source Files"
+ {
+ $File "$SRCDIR\game\shared\choreoactor.cpp"
+ $File "$SRCDIR\game\shared\choreochannel.cpp"
+ $File "$SRCDIR\game\shared\choreoevent.cpp"
+ $File "$SRCDIR\game\shared\choreoscene.cpp"
+ $File "$SRCDIR\game\shared\sceneimage.cpp"
+ }
+
+ $Folder "Header Files"
+ {
+ $File "$SRCDIR\game\shared\choreoactor.h"
+ $File "$SRCDIR\game\shared\choreochannel.h"
+ $File "$SRCDIR\game\shared\choreoevent.h"
+ $File "$SRCDIR\game\shared\choreoscene.h"
+ $File "$SRCDIR\game\shared\ichoreoeventcallback.h"
+ $File "$SRCDIR\game\shared\sceneimage.h"
+ }
+
+ $Folder "Public Header Files"
+ {
+ $File "$SRCDIR\public\mathlib\mathlib.h"
+ $File "$SRCDIR\public\mathlib\vector.h"
+ $File "$SRCDIR\public\mathlib\vector2d.h"
+ }
+}