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.
47 lines
856 B
47 lines
856 B
5 years ago
|
//-----------------------------------------------------------------------------
|
||
|
// 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
|
||
|
}
|
||
|
}
|