64 lines
1.3 KiB
Plaintext
64 lines
1.3 KiB
Plaintext
|
//-----------------------------------------------------------------------------
|
||
|
// Base Settings for Source(TM) Projects
|
||
|
//-----------------------------------------------------------------------------
|
||
|
|
||
|
$Include "$SRCDIR\vpc_scripts\version.vpc"
|
||
|
|
||
|
$MacroRequired "SRCDIR"
|
||
|
$MacroRequired "OUTBINNAME" "$PROJECTNAME"
|
||
|
$MacroRequired "OUTBINDIR"
|
||
|
$MacroRequired "DEVKITBINDIR" "."
|
||
|
|
||
|
$Macro PLATSUBDIR "\."
|
||
|
$Macro LIBPUBLIC "$SRCDIR\lib\public"
|
||
|
$Macro LIBCOMMON "$SRCDIR\lib\common"
|
||
|
|
||
|
$Macro SCE_LIBROOT "$(SCE_PS3_ROOT)\target\ppu\lib"
|
||
|
|
||
|
$Include "$SRCDIR\vpc_scripts\source_spu_dll_ps3_debug.vpc"
|
||
|
$Include "$SRCDIR\vpc_scripts\source_spu_dll_ps3_release.vpc"
|
||
|
|
||
|
$IgnoreRedundancyWarning "ON"
|
||
|
|
||
|
// Common Configuration
|
||
|
$Configuration
|
||
|
{
|
||
|
$Compiler
|
||
|
{
|
||
|
$PreprocessorDefinitions "$BASE;_MEMTEST" [$MEMTEST]
|
||
|
$PreprocessorDefinitions "$BASE;_LOWVIOLENCE" [$LV]
|
||
|
$PreprocessorDefinitions "$BASE;_CERT" [$CERT]
|
||
|
$PreprocessorDefinitions "$BASE;MEMOVERRIDE_MODULE=$PROJECTNAME;_DLL_EXT=$_DLL_EXT"
|
||
|
}
|
||
|
|
||
|
$PreBuildEvent
|
||
|
{
|
||
|
$CommandLine "$CRCCHECK" "\n"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Skeleton Project
|
||
|
$Project
|
||
|
{
|
||
|
$Folder "Source Files"
|
||
|
{
|
||
|
}
|
||
|
|
||
|
$Folder "Link Libraries"
|
||
|
{
|
||
|
}
|
||
|
|
||
|
$File "vsi.nul"
|
||
|
{
|
||
|
$Configuration
|
||
|
{
|
||
|
$CustomBuildStep
|
||
|
{
|
||
|
$CommandLine "echo >nul
"
|
||
|
$Outputs "$(IntDir)\vsi.out"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|