summaryrefslogtreecommitdiff
path: root/vpc_scripts/source_dll_posix_base.vpc
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 /vpc_scripts/source_dll_posix_base.vpc
downloadarchived-source-engine-2018-hl2-src-master.tar.xz
archived-source-engine-2018-hl2-src-master.zip
Diffstat (limited to 'vpc_scripts/source_dll_posix_base.vpc')
-rw-r--r--vpc_scripts/source_dll_posix_base.vpc51
1 files changed, 51 insertions, 0 deletions
diff --git a/vpc_scripts/source_dll_posix_base.vpc b/vpc_scripts/source_dll_posix_base.vpc
new file mode 100644
index 0000000..d57374c
--- /dev/null
+++ b/vpc_scripts/source_dll_posix_base.vpc
@@ -0,0 +1,51 @@
+
+$Include "$SRCDIR\vpc_scripts\version.vpc"
+$Include "$SRCDIR\vpc_scripts\source_posix_base.vpc"
+
+
+$MacroRequired "OUTBINNAME" "$PROJECTNAME"
+$MacroRequired "OUTBINDIR" "$SRCDIR\..\game\bin"
+
+
+// General configuration info.
+$Configuration
+{
+ $General
+ {
+ $ConfigurationType "Dynamic Library (.dll)"
+ $GameOutputFile "$OUTBINDIR/$OUTBINNAME$OUTDLLEXT"
+ }
+
+ $Compiler
+ {
+ $PreprocessorDefinitions "$BASE;DLLNAME=$OUTBINNAME"
+ }
+
+ $Linker
+ {
+ $OutputFile "$(OBJ_DIR)/$OUTBINNAME$OUTDLLEXT"
+ }
+}
+
+// Skeleton Project - All derived projects get this as a starting base
+$Project
+{
+ $Folder "Source Files"
+ {
+ $File "$SRCDIR\public\tier0\memoverride.cpp"
+ {
+ $Configuration
+ {
+ $Compiler
+ {
+ $Create/UsePrecompiledHeader "Not Using Precompiled Headers"
+ }
+ }
+ }
+ }
+
+ $Folder "Resources"
+ {
+ $File "$ROOTSCRIPT"
+ }
+}