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/bugreporter_filequeue/bugreporter_filequeue.vpc | |
| download | archived-source-engine-2018-hl2-src-master.tar.xz archived-source-engine-2018-hl2-src-master.zip | |
Diffstat (limited to 'utils/bugreporter_filequeue/bugreporter_filequeue.vpc')
| -rw-r--r-- | utils/bugreporter_filequeue/bugreporter_filequeue.vpc | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/utils/bugreporter_filequeue/bugreporter_filequeue.vpc b/utils/bugreporter_filequeue/bugreporter_filequeue.vpc new file mode 100644 index 0000000..1848db7 --- /dev/null +++ b/utils/bugreporter_filequeue/bugreporter_filequeue.vpc @@ -0,0 +1,61 @@ +//----------------------------------------------------------------------------- +// BUGREPORTER_TEXT.VPC +// +// Project Script +//----------------------------------------------------------------------------- + +$Macro SRCDIR "..\.." +$Macro OUTBINDIR "$SRCDIR\..\game\bin" + +$Include "$SRCDIR\vpc_scripts\source_dll_base.vpc" + +$Configuration +{ + $Compiler + { + $AdditionalIncludeDirectories "$BASE;..\common" + $PreprocessorDefinitions "$BASE;BUGREPORTER_EXPORTS" + } + $Linker + { + $SystemLibraries "iconv" [$OSXALL] + } +} + +$Project "bugreporter_filequeue" +{ + $Folder "Source Files" + { + $File "bugreporter.cpp" + } + + $Folder "Header Files" + { + $File "$SRCDIR\public\tier0\basetypes.h" + $File "$SRCDIR\common\bugreporter\bugreporter.h" + $File "$SRCDIR\public\Color.h" + $File "$SRCDIR\public\tier0\commonmacros.h" + $File "$SRCDIR\public\tier0\dbg.h" + $File "$SRCDIR\public\tier0\fasttimer.h" + $File "$SRCDIR\public\filesystem.h" + $File "$SRCDIR\public\appframework\IAppSystem.h" + $File "$SRCDIR\public\vstdlib\IKeyValuesSystem.h" + $File "$SRCDIR\public\tier0\mem.h" + $File "$SRCDIR\public\tier0\memdbgoff.h" + $File "$SRCDIR\public\tier0\memdbgon.h" + $File "$SRCDIR\public\tier0\platform.h" + $File "$SRCDIR\public\tier0\protected_things.h" + $File "$SRCDIR\public\string_t.h" + $File "$SRCDIR\public\tier1\strtools.h" + $File "..\bugreporter\trktool.h" + $File "$SRCDIR\public\tier1\utlmemory.h" + $File "$SRCDIR\public\tier1\utlrbtree.h" + $File "$SRCDIR\public\vstdlib\vstdlib.h" + } + + $Folder "Link Libraries" + { + $File "$SRCDIR\lib\common\expdlln.lib" [$WIN32] + $File "$SRCDIR\lib\common\trktooln.lib" [$WIN32] + } +} |