Team Fortress 2 Source Code as on 22/4/2020
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
//----------------------------------------------------------------------------- // BZIP2.VPC // // Project Script //-----------------------------------------------------------------------------
$Macro SRCDIR "..\.." $Macro OUTLIBDIR "$LIBCOMMON" $Include "$SRCDIR\vpc_scripts\source_lib_base.vpc"
$Configuration { $Compiler { $ForceIncludes " " $CompileAs "Compile as C Code (/TC)" [!$POSIX] } }
$Project "Bzip2" { $Folder "Source Files" { $File "blocksort.c" $File "bzip2.c" $File "bzlib.c" $File "compress.c" $File "crctable.c" $File "decompress.c" $File "huffman.c" $File "randtable.c" }
$Folder "Header Files" { $File "bzlib.h" $File "bzlib_private.h" } }
|