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.
|
|
//----------------------------------------------------------------------------- // Base Settings for Source(TM) Projects //-----------------------------------------------------------------------------
$IgnoreRedundancyWarning "ON"
$MacroRequired "SRCDIR" $MacroRequired "OUTLIBNAME" $MacroRequired "OUTLIBDIR"
$Configuration "Debug" { $General { // General $OutputDirectory ".\Debug_PS3" $IntermediateDirectory ".\Debug_PS3" $ExtensionsToDeleteOnClean $BuildLogFile $SystemIncludeDependencies $SaveDebuggerPropertiesInProject $ConfigurationType "LIB" }
$SNCCompiler { // General $AdditionalIncludeDirectories "$SRCDIR\common;$SRCDIR\public;$SRCDIR\public\tier0;$SRCDIR\public\tier1;$SRCDIR\public\tier2;"$(SN_PS3_PATH)\ppu\include\sn";"$(SCE_PS3_ROOT)\target\ppu\include";"$(SCE_PS3_ROOT)\target\common\include";"$(SCE_PS3_ROOT)\target\ppu\include\sys"" $PreprocessorDefinitions "SN_TARGET_PS3;_DEBUG;DEBUG;__SNC__;__CELL_ASSERT__;POSIX" $ForceIncludes "tier0/platform.h" $GenerateDebugInformation "Yes" $Warnings "Generate Warnings (=1)" $TreatMessagesAsErrors "Reported Errors Only (=0)" $DisableSpecificWarnings "64;68;112;129;175;178;186;187;237;285;369;429;496;552;613;832;1011;1323;1421;1437;1772;1773;1778;1787" $ObjectFileName "$(IntDir)\" $CallprofHierarchicalProfiling "No"
// Optimization $OptimizationLevel "No Optimization, Forced Inlining only (-O0)" $FastMath "No" $RelaxAliasChecking "Default" $BranchlessCompares "Always Use Branches (=0)" $UnrollLoops "30" $AssumeAlignedPointers "No" $AssumeCorrectSign "Yes"
// Code Generation $TOCPointerPreservation "Preserve the TOC for all Function Calls (=0)" $InitializedDataPlacement "Automatic .bss and .data Placement (=1)" $PromoteFPConstantsToDoubles "No"
// Language $CC++Dialect "Mixed with GNU Extensions" $C++ExceptionsAndRTTIUsage "Using RTTI only" $DefaultCharUnsigned "No" $DefaultFPConstantsAsTypeFloat "No" $BuiltInDefinitionForWCHAR_TType "unsigned short (=ushort)"
// Precompiled Headers $Create/UsePrecompiledHeader "Not Using Precompiled Header File(s)" $PrecompiledHeaderFile
// Command Line $AdditionalOptions }
$Librarian { $OutputFile "$OUTLIBDIR\$OUTLIBNAME_ps3.lib" $AdditionalDependencies $WholeArchive $LinkLibraryDependencies } $PreBuildEvent { $CommandLine $Description $ExcludedFromBuild "No" }
$PreLinkEvent { $CommandLine $Description $ExcludedFromBuild "No" }
$PostBuildEvent { $CommandLine $Description $ExcludedFromBuild "No" }
$CustomBuildStep { // General $CommandLine $Description $Outputs $AdditionalDependencies } }
|