diff options
Diffstat (limited to 'sp/src/vpc_scripts/source_exe_win_win32_debug.vpc')
| -rw-r--r-- | sp/src/vpc_scripts/source_exe_win_win32_debug.vpc | 327 |
1 files changed, 327 insertions, 0 deletions
diff --git a/sp/src/vpc_scripts/source_exe_win_win32_debug.vpc b/sp/src/vpc_scripts/source_exe_win_win32_debug.vpc new file mode 100644 index 00000000..06d2401b --- /dev/null +++ b/sp/src/vpc_scripts/source_exe_win_win32_debug.vpc @@ -0,0 +1,327 @@ +//-----------------------------------------------------------------------------
+// SOURCE_EXE_WIN_WIN32_DEBUG.VPC
+//
+// Base Settings for Source(TM) Projects
+//-----------------------------------------------------------------------------
+
+$IgnoreRedundancyWarning "ON"
+
+$MacroRequired "PLATSUBDIR"
+$MacroRequired "SRCDIR"
+$MacroRequired "OUTBINNAME"
+$MacroRequired "OUTBINDIR"
+
+$Configuration "Debug"
+{
+ $General
+ {
+ // General
+ $OutputDirectory ".\Debug$PLATSUBDIR"
+ $IntermediateDirectory ".\Debug$PLATSUBDIR"
+ $ExtensionsToDeleteOnClean
+ $BuildLogFile
+ $InheritedProjectPropertySheets
+
+ // Project Defaults
+ $ConfigurationType "Application (.exe)"
+ $UseOfMFC
+ $UseOfATL
+ $MinimizeCRTUseInATL
+ $CharacterSet "Use Multi-Byte Character Set"
+ $CommonLanguageRuntimeSupport
+ $WholeProgramOptimization
+ }
+
+ $Debugging
+ {
+ // Action
+ $Command
+ $CommandArguments
+ $WorkingDirectory
+ $Attach
+ $DebuggerType
+ $Environment
+ $MergeEnvironment
+ $SQLDebugging
+ }
+
+ $Compiler
+ {
+ // General
+ $AdditionalIncludeDirectories "$SRCDIR\common;$SRCDIR\public;$SRCDIR\public\tier0;$SRCDIR\public\tier1"
+ $Resolve#UsingReferences
+ $DebugInformationFormat "Program Database for Edit & Continue (/ZI)" [!$EANDCDISABLED && !$WIN64]
+ $DebugInformationFormat "Program Database (/Zi)" [$EANDCDISABLED || $WIN64]
+ $SuppressStartupBanner
+ $WarningLevel "Level 4 (/W4)"
+ $Detect64bitPortabilityIssues "Yes (/Wp64)"
+ $TreatWarningsAsErrors "No"
+ $UseUNICODEResponseFiles "No"
+
+ // Optimization
+ $Optimization "Disabled (/Od)"
+ $InlineFunctionExpansion
+ $EnableIntrinsicFunctions
+ $FavorSizeOrSpeed
+ $OmitFramePointers
+ $EnableFiberSafeOptimizations
+ $WholeProgramOptimization
+
+ // Preprocessor
+ $PreprocessorDefinitions "_HAS_ITERATOR_DEBUGGING=0;WIN32;_WIN32;_DEBUG;DEBUG;_WINDOWS;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE"
+ $PreprocessorDefinitions "$BASE;RAD_TELEMETRY_DISABLED" [$SOURCESDK]
+ $IgnoreStandardIncludePath
+ $GeneratePreprocessedFile
+ $KeepComments
+
+ // Code Generation
+ $EnableStringPooling "Yes (/GF)"
+ // EnableMinimalRebuild is incompatible with /MP (multi-processor builds)
+ // and it also makes it hard to iterate on warnings because the compiler
+ // detects that there is no reason to recompile when you request it.
+ // It should always be off? It should definitely be off for /analyze builds.
+ //$EnableMinimalRebuild "Yes (/Gm)" [!$ANALYZE]
+ $EnableC++Exceptions "No"
+ $SmallerTypeCheck
+ $BasicRuntimeChecks "Default"
+ $RuntimeLibrary "Multi-threaded Debug (/MTd)"
+ $StructMemberAlignment
+ $BufferSecurityCheck "Yes"
+ $EnableFunctionLevelLinking
+ $EnableEnhancedInstructionSet
+ $EnableEnhancedInstructionSet "Streaming SIMD Extensions (/arch:SSE)" [$WIN32]
+ $FloatingPointModel "Fast (/fp:fast)"
+ $EnableFloatingPointExceptions
+
+ // Language
+ $DisableLanguageExtensions
+ $DefaultCharUnsigned "No"
+ $TreatWCHAR_TAsBuiltInType "Yes (/Zc:wchar_t)"
+ $ForceConformanceInForLoopScope "Yes (/Zc:forScope)"
+ $EnableRunTimeTypeInfo "Yes (/GR)"
+ $OpenMPSupport "No"
+
+ // Precompiled Headers
+ $Create/UsePrecompiledHeader "Not Using Precompiled Headers"
+ $Create/UsePCHThroughFile
+ $PrecompiledHeaderFile
+
+ // Output Files
+ $ExpandAttributedSource "No"
+ $AssemblerOutput "No Listing"
+ $ASMListLocation "$(IntDir)/"
+ $ObjectFileName "$(IntDir)/"
+ $ProgramDatabaseFileName "$(IntDir)/"
+ $GenerateXMLDocumentationFiles
+ $XMLDocumentationFileName
+
+ // Browse Information
+ $EnableBrowseInformation "None"
+ $BrowseFile "$(IntDir)/"
+
+ // Advanced
+ $CallingConvention
+ $CompileAs "Compile as C++ Code (/TP)"
+ $DisableSpecificWarnings
+ $ForceIncludes
+ $Force#Using
+ $ShowIncludes
+ $UndefinePreprocessorDefinitions
+ $UndefineAllPreprocessorDefinitions
+ $UseFullPaths
+ $OmitDefaultLibraryNames
+ $ErrorReporting "Prompt Immediately (/errorReport:prompt)"
+
+ // Command Line
+ $AdditionalOptions "$BASE /MP"
+ }
+
+ $Linker
+ {
+ // General
+ $OutputFile "$(OutDir)/$OUTBINNAME.exe"
+ $ShowProgress "Not Set"
+ $Version
+ $EnableIncrementalLinking "Yes (/INCREMENTAL)"
+ $SuppressStartupBanner "Yes (/NOLOGO)"
+ $IgnoreImportLibrary
+ $RegisterOutput
+ $AdditionalLibraryDirectories
+ $LinkLibraryDependencies
+ $UseLibraryDependencyInputs
+ $UseUNICODEResponseFiles "No"
+
+ // Input
+ $AdditionalDependencies
+ $IgnoreAllDefaultLibraries
+ $IgnoreSpecificLibrary "libc;libcd;libcmt"
+ $ModuleDefinitionFile
+ $AddModuleToAssembly
+ $EmbedManagedResourceFile
+ $ForceSymbolReferences
+ $DelayLoadedDLLs
+ $AssemblyLinkResource
+
+ // Manifest File
+ $GenerateManifest "No" [!$VS2010]
+ $GenerateManifest "Yes" [$VS2010]
+ $ManifestFile
+ $AdditionalManifestDependencies
+ $AllowIsolation
+
+ // Debugging
+ $GenerateDebugInfo "Yes (/DEBUG)"
+ $GenerateProgramDatabaseFile "$(IntDir)/$(TargetName).pdb"
+ $StripPrivateSymbols
+ $GenerateMapFile "No"
+ $MapFileName "$(IntDir)/$(TargetName).map"
+ $MapExports
+ $DebuggableAssembly
+
+ // System
+ $SubSystem "Windows (/SUBSYSTEM:WINDOWS)"
+ $HeapReserveSize
+ $HeapCommitSize
+ $StackReserveSize
+ $StackCommitSize
+ $EnableLargeAddresses
+ $TerminalServer
+ $SwapRunFromCD
+ $SwapRunFromNetwork
+ $Driver
+
+ // Optimization
+ $References
+ $EnableCOMDATFolding
+ $OptimizeForWindows98
+ $FunctionOrder
+ $ProfileGuidedDatabase
+ $LinkTimeCodeGeneration
+
+ // Embedded IDL
+ $MIDLCommands
+ $IgnoreEmbeddedIDL
+ $MergeIDLBaseFileName
+ $TypeLibrary
+ $TypeLibResourceID
+
+ // Advanced
+ $EntryPoint
+ $NoEntryPoint
+ $SetChecksum
+ $BaseAddress "$LOADADDRESS_DEVELOPMENT"
+ $FixedBaseAddress
+ $TurnOffAssemblyGeneration
+ $DelayLoadedDLL
+ $ImportLibrary
+ $MergeSections
+ $Profile
+ $CLRThreadAttribute
+ $CLRImageType
+ $KeyFile
+ $KeyContainer
+ $DelaySign
+ $ErrorReporting "Prompt Immediately (/ERRORREPORT:PROMPT)"
+ $CLRUnmanagedCodeCheck
+ }
+
+ $Linker [$VS2010]
+ {
+ // SAFE_SEH should always be disabled on debug builds.
+ $ImageHasSafeExceptionHandlers "false"
+ }
+
+ $ManifestTool
+ {
+ // General
+ $SuppressStartupBanner "Yes (/nologo)"
+ $VerboseOutput
+ $AssemblyIdentity
+ $UseUNICODEResponseFiles
+ $UseFAT32WorkAround
+
+ // Input And Output
+ $AdditionalManifestFiles "$SRCDIR\public\windows_default.manifest" [$VS2010 && !$SOURCESDK]
+ $InputResourceManifests
+ $EmbedManifest
+ $OutputManifestFile
+ $ManifestResourceFile
+ $GenerateCatalogFiles
+ $DependencyInformationFile
+
+ // Isolated COM
+ $TypeLibraryFile
+ $RegistrarScriptFile
+ $ComponentFileName
+ $ReplacementsFile
+
+ // Advanced
+ $UpdateFileHashes
+ $UpdateFileHashesSearchPath
+
+ // Command Line
+ $AdditionalOptions
+ }
+
+ $XMLDocumentGenerator
+ {
+ // General
+ $SuppressStartupBanner "Yes (/nologo)"
+ $ValidateIntelliSense
+ $AdditionalDocumentFiles
+ $OutputDocumentFile
+ $DocumentLibraryDependencies
+ $UseUNICODEResponseFiles
+ }
+
+ $BrowseInformation
+ {
+ $SuppressStartupBanner "Yes (/nologo)"
+ $OutputFile "$(OutDir)/$OUTBINNAME.bsc"
+ $AdditionalOptions
+ }
+
+ $Resources
+ {
+ // General
+ $PreprocessorDefinitions "_DEBUG;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE"
+ $Culture "English (United States) (0x409)"
+ $AdditionalIncludeDirectories
+ $IgnoreStandardIncludePath
+ $ShowProgress
+ $ResourceFileName
+
+ // Command Line
+ $AdditionalOptions
+ }
+
+ $PreBuildEvent
+ {
+ $CommandLine
+ $Description
+ $ExcludedFromBuild "No"
+ }
+
+ $PreLinkEvent
+ {
+ $CommandLine
+ $Description
+ $ExcludedFromBuild "No"
+ }
+
+ $PostBuildEvent
+ {
+ $CommandLine
+ $Description
+ $ExcludedFromBuild "No"
+ }
+
+ $CustomBuildStep
+ {
+ // General
+ $CommandLine
+ $Description
+ $Outputs
+ $AdditionalDependencies
+ }
+}
\ No newline at end of file |