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/bsppack/bsppack.vpc | |
| download | archived-source-engine-2018-hl2-src-master.tar.xz archived-source-engine-2018-hl2-src-master.zip | |
Diffstat (limited to 'utils/bsppack/bsppack.vpc')
| -rw-r--r-- | utils/bsppack/bsppack.vpc | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/utils/bsppack/bsppack.vpc b/utils/bsppack/bsppack.vpc new file mode 100644 index 0000000..602757e --- /dev/null +++ b/utils/bsppack/bsppack.vpc @@ -0,0 +1,57 @@ +//----------------------------------------------------------------------------- +// BSPPACK.VPC +// +// Project Script +//----------------------------------------------------------------------------- + +$macro SRCDIR "..\.." +$Macro OUTBINDIR "$SRCDIR\..\game\bin" + +$include "$SRCDIR\vpc_scripts\source_dll_base.vpc" + +$Configuration +{ + $Compiler + { + $PreprocessorDefinitions "$BASE;BSPPACK_EXPORTS;ZIP_SUPPORT_LZMA_ENCODE" + $PreprocessorDefinitions "$BASE;WIN_ERROR;_USRDLL" [$WIN32] + $PreprocessorDefinitions "$BASE;WIN_ERROR;_USRDLL;BSP_USE_LESS_MEMORY" [$X360] + $AdditionalIncludeDirectories "..\common;$BASE" + } + $Linker + { + $SystemLibraries "iconv" [$OSXALL] + } +} + +$Project "bsppack" +{ + $Folder "Source Files" + { + $File "..\common\bsplib.cpp" + $File "bsppack.cpp" + $File "..\common\cmdlib.cpp" + $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 "$SRCDIR\public\lumpfiles.cpp" + $File "..\common\scriplib.cpp" + $File "$SRCDIR\public\zip_utils.cpp" + $File "$SRCDIR\filesystem\linux_support.cpp" [$POSIX] + } + + $Folder "Public Header Files" + { + $File "$SRCDIR\public\ibsppack.h" + $File "$SRCDIR\public\bspfile.h" + } + + $Folder "Link Libraries" + { + $Lib mathlib + $Lib tier2 + $Lib "$LIBCOMMON/lzma" + } +} |