Disable debug logging on Release builds.

TRAC #21169 ISSUE=322 Signed-off-by: Daniel Koch Author: Nicolas Capens git-svn-id: https://angleproject.googlecode.com/svn/trunk@1207 736b8ea6-26fd-11df-bfd4-992fa37f6226
parent a8833e91

Microsoft Visual Studio Solution File, Format Version 10.00
# Visual Studio 2008
# Visual C++ Express 2008
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libEGL", "libEGL\libEGL.vcproj", "{E746FCA9-64C3-433E-85E8-9A5A67AB7ED6}"
ProjectSection(ProjectDependencies) = postProject
{B5871A7A-968C-42E3-A33B-981E6F448E78} = {B5871A7A-968C-42E3-A33B-981E6F448E78}
......
......@@ -51,10 +51,10 @@
RuntimeLibrary="1"
UsePrecompiledHeader="0"
WarningLevel="4"
DisableSpecificWarnings="4100;4127;4189;4239;4244;4245;4512;4702"
WarnAsError="true"
Detect64BitPortabilityProblems="false"
DebugInformationFormat="4"
WarnAsError="true"
DisableSpecificWarnings="4100;4127;4189;4239;4244;4245;4512;4702"
/>
<Tool
Name="VCManagedResourceCompilerTool"
......@@ -128,14 +128,14 @@
Optimization="2"
InlineFunctionExpansion="2"
AdditionalIncludeDirectories="$(ProjectDir)/..; $(ProjectDir)/../../include"
PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;LIBEGL_EXPORTS;_CRT_SECURE_NO_DEPRECATE;NOMINMAX;_SECURE_SCL=0"
PreprocessorDefinitions="ANGLE_DISABLE_TRACE;WIN32;NDEBUG;_WINDOWS;_USRDLL;LIBEGL_EXPORTS;_CRT_SECURE_NO_DEPRECATE;NOMINMAX;_SECURE_SCL=0"
RuntimeLibrary="0"
UsePrecompiledHeader="0"
WarningLevel="4"
DisableSpecificWarnings="4100;4127;4189;4239;4244;4245;4512;4702"
WarnAsError="true"
Detect64BitPortabilityProblems="false"
DebugInformationFormat="3"
WarnAsError="true"
DisableSpecificWarnings="4100;4127;4189;4239;4244;4245;4512;4702"
/>
<Tool
Name="VCManagedResourceCompilerTool"
......
//
// Copyright (c) 2002-2010 The ANGLE Project Authors. All rights reserved.
// Copyright (c) 2002-2012 The ANGLE Project Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
......@@ -25,8 +25,12 @@ BOOL WINAPI DllMain(HINSTANCE instance, DWORD reason, LPVOID reserved)
{
fclose(debug);
debug = fopen(TRACE_OUTPUT_FILE, "wt"); // Erase
if (debug)
{
fclose(debug);
}
}
#endif
currentTLS = TlsAlloc();
......
......@@ -51,10 +51,10 @@
RuntimeLibrary="1"
UsePrecompiledHeader="0"
WarningLevel="4"
DisableSpecificWarnings="4100;4127;4189;4239;4244;4245;4512;4702"
WarnAsError="true"
Detect64BitPortabilityProblems="false"
DebugInformationFormat="4"
WarnAsError="true"
DisableSpecificWarnings="4100;4127;4189;4239;4244;4245;4512;4702"
/>
<Tool
Name="VCManagedResourceCompilerTool"
......@@ -127,14 +127,14 @@
Optimization="2"
InlineFunctionExpansion="2"
AdditionalIncludeDirectories="$(ProjectDir)/..; $(ProjectDir)/../../include"
PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;LIBGLESV2_EXPORTS;_CRT_SECURE_NO_DEPRECATE;NOMINMAX;_SECURE_SCL=0"
PreprocessorDefinitions="ANGLE_DISABLE_TRACE;WIN32;NDEBUG;_WINDOWS;_USRDLL;LIBGLESV2_EXPORTS;_CRT_SECURE_NO_DEPRECATE;NOMINMAX;_SECURE_SCL=0"
RuntimeLibrary="0"
UsePrecompiledHeader="0"
WarningLevel="4"
DisableSpecificWarnings="4100;4127;4189;4239;4244;4245;4512;4702;4718"
WarnAsError="true"
Detect64BitPortabilityProblems="false"
DebugInformationFormat="3"
WarnAsError="true"
DisableSpecificWarnings="4100;4127;4189;4239;4244;4245;4512;4702;4718"
/>
<Tool
Name="VCManagedResourceCompilerTool"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment