Counter Strike : Global Offensive Source Code
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.
 
 
 
 
 
 

46 lines
795 B

//-----------------------------------------------------------------------------
// BZIP2.VPC
//
// Project Script
//-----------------------------------------------------------------------------
$Macro SRCDIR "..\.."
$Macro OUTLIBDIR "$OUTLIBCOMMONDIR"
$include "$SRCDIR\vpc_scripts\source_lib_base.vpc"
$Configuration
{
$Compiler [$PS3]
{
$PreprocessorDefinitions "$BASE;_PS3"
$ForceIncludes " "
}
$Compiler [!$PS3]
{
$ForceIncludes " "
$CompileAs "Compile as C Code (/TC)"
}
}
$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"
}
}