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 /vtf/vtf.vpc | |
| download | archived-source-engine-2018-hl2-src-master.tar.xz archived-source-engine-2018-hl2-src-master.zip | |
Diffstat (limited to 'vtf/vtf.vpc')
| -rw-r--r-- | vtf/vtf.vpc | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/vtf/vtf.vpc b/vtf/vtf.vpc new file mode 100644 index 0000000..a9ac82e --- /dev/null +++ b/vtf/vtf.vpc @@ -0,0 +1,46 @@ +//----------------------------------------------------------------------------- +// VTF.VPC +// +// Project Script +//----------------------------------------------------------------------------- + +$macro SRCDIR ".." +$include "$SRCDIR\vpc_scripts\source_lib_base.vpc" + +$Configuration +{ + $Compiler + { + $AdditionalIncludeDirectories "$BASE;$SRCDIR\dx9sdk\include" [$WINDOWS] + $PreprocessorDefinitions "$BASE;fopen=dont_use_fopen" [$WINDOWS] + } +} + +$Project "vtf" +{ + $Folder "Source Files" + { + $File "convert_x360.cpp" + $File "s3tc_decode.cpp" [$WINDOWS] + $File "vtf.cpp" + $File "vtf_x360.cpp" [$X360] + } + + $Folder "Public Header Files" + { + $File "s3tc_decode.h" [$WINDOWS] + $File "$SRCDIR\public\vtf\vtf.h" + } + + $Folder "Header Files" + { + $File "cvtf.h" + } + + $Folder "Link Libraries" [$X360] + { + $Lib bitmap + $Lib mathlib + $Lib tier2 + } +} |