diff options
| author | Michael Sartain <[email protected]> | 2014-10-02 08:25:55 -0700 |
|---|---|---|
| committer | Michael Sartain <[email protected]> | 2014-10-02 08:25:55 -0700 |
| commit | 55ed12f8d1eb6887d348be03aee5573d44177ffb (patch) | |
| tree | 3686f7ca78c780cd9a3d367b79a9d9250c1be7c0 /mp/src/vpc_scripts/source_exe_win_win32_release.vpc | |
| parent | * Added support for Visual C++ 2013 Express to VPC (diff) | |
| download | source-sdk-2013-55ed12f8d1eb6887d348be03aee5573d44177ffb.tar.xz source-sdk-2013-55ed12f8d1eb6887d348be03aee5573d44177ffb.zip | |
Updated the SDK with the latest code from the TF and HL2 branches.
Diffstat (limited to 'mp/src/vpc_scripts/source_exe_win_win32_release.vpc')
| -rw-r--r-- | mp/src/vpc_scripts/source_exe_win_win32_release.vpc | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/mp/src/vpc_scripts/source_exe_win_win32_release.vpc b/mp/src/vpc_scripts/source_exe_win_win32_release.vpc index 6cb5c335..2f9ab59f 100644 --- a/mp/src/vpc_scripts/source_exe_win_win32_release.vpc +++ b/mp/src/vpc_scripts/source_exe_win_win32_release.vpc @@ -82,7 +82,7 @@ $Configuration "Release" // Preprocessor $PreprocessorDefinitions "$BASE;WIN32;_WIN32;NDEBUG;_WINDOWS;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_ALLOW_RUNTIME_LIBRARY_MISMATCH;_ALLOW_ITERATOR_DEBUG_LEVEL_MISMATCH;_ALLOW_MSC_VER_MISMATCH;%(PreprocessorDefinitions)" - $PreprocessorDefinitions "$BASE;RELEASE_ASSERTS" [$RELEASEASSERTS] + $PreprocessorDefinitions "$BASE;RELEASEASSERTS" [$RELEASEASSERTS] $IgnoreStandardIncludePath $GeneratePreprocessedFile $KeepComments @@ -141,8 +141,11 @@ $Configuration "Release" $OmitDefaultLibraryNames $ErrorReporting "Prompt Immediately (/errorReport:prompt)" - // Enable extra debugging information. - $AdditionalOptions "$BASE /d2Zi+" + // Enable extra debugging information. This switch requires VS 2013 Update 3. + // With VS 2013 make sure that Edit-And-Continue is disabled in the debugger settings so that + // the debugger uses the enhanced debug information. + // http://randomascii.wordpress.com/2013/09/11/debugging-optimized-codenew-in-visual-studio-2012/ + $AdditionalOptions "$BASE /Zo" // Command Line $AdditionalOptions "$BASE /Oy-" [$NOFPO] } @@ -165,7 +168,7 @@ $Configuration "Release" // Input $AdditionalDependencies $IgnoreAllDefaultLibraries - $IgnoreSpecificLibrary "libc;libcd;libcmtd" + $IgnoreSpecificLibrary "libc;libcd;libcmtd;libcpmtd;libcpmtd0;libcpmtd1" $ModuleDefinitionFile $AddModuleToAssembly $EmbedManagedResourceFile |