diff options
| author | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
|---|---|---|
| committer | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
| commit | 3bf9df6b2785fa6d951086978a3e66f49427166a (patch) | |
| tree | 2c0f1f0c63c4832882bc93814ebd2c2b1c6224e5 /utils/vmf_tweak/vmf_tweak.vpc | |
| download | archived-source-engine-2018-hl2-src-master.tar.xz archived-source-engine-2018-hl2-src-master.zip | |
Diffstat (limited to 'utils/vmf_tweak/vmf_tweak.vpc')
| -rw-r--r-- | utils/vmf_tweak/vmf_tweak.vpc | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/utils/vmf_tweak/vmf_tweak.vpc b/utils/vmf_tweak/vmf_tweak.vpc new file mode 100644 index 0000000..8fc3f7e --- /dev/null +++ b/utils/vmf_tweak/vmf_tweak.vpc @@ -0,0 +1,47 @@ +//----------------------------------------------------------------------------- +// VMF_TWEAK.VPC +// +// Project Script +//----------------------------------------------------------------------------- + +$Macro SRCDIR "..\.." +$Macro OUTBINDIR "$SRCDIR\..\game\bin" + +$Include "$SRCDIR\vpc_scripts\source_exe_con_base.vpc" + +$Configuration +{ + $Compiler + { + $AdditionalIncludeDirectories "$BASE,$SRCDIR\game\shared,..\common" + } +} + +$Project "Vmf_tweak" +{ + $Folder "Source Files" + { + $File "$SRCDIR\public\ChunkFile.cpp" + $File "..\common\cmdlib.cpp" + $File "..\common\cmdlib.h" + $File "$SRCDIR\public\filesystem_helpers.cpp" + $File "$SRCDIR\public\filesystem_helpers.h" + $File "$SRCDIR\public\filesystem_init.cpp" + $File "..\common\filesystem_tools.cpp" + $File "..\common\filesystem_tools.h" + $File "StdAfx.cpp" + $File "vmf_tweak.cpp" + } + + $Folder "Header Files" + { + $File "$SRCDIR\public\ChunkFile.h" + $File "StdAfx.h" + $File "$SRCDIR\public\tier1\tokenreader.h" + } + + $Folder "Link Libraries" + { + $Lib tier2 + } +} |