summaryrefslogtreecommitdiff
path: root/Source/VSProps/CodeGen_Debug.props
diff options
context:
space:
mode:
authorShawn Hoffman <godisgovernment@gmail.com>2011-02-08 04:03:48 +0000
committerShawn Hoffman <godisgovernment@gmail.com>2011-02-08 04:03:48 +0000
commita34b81cc01feca9fbec02bc765853f5c583cb9ad (patch)
treeaa7458476f6e1fef3a67c699f3e178caf5e20682 /Source/VSProps/CodeGen_Debug.props
parent1f0663c1a870ccf3928bd24f27613a1e0f154abb (diff)
vs2010:
buildfix move much of the build settings to .props files -please use them as much as possible in the future, instead of changing individual projects NOTE: to avoid left over blobs, clean your builds *before* applying these changes. TODO: add DebugFast target for projects that are lacking it. Lack of DebugFast targets cause the linker to use LTCG when we don't want it. please test for regressions which could be caused by being too happy with compiler flags :) git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7109 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/VSProps/CodeGen_Debug.props')
-rw-r--r--Source/VSProps/CodeGen_Debug.props14
1 files changed, 14 insertions, 0 deletions
diff --git a/Source/VSProps/CodeGen_Debug.props b/Source/VSProps/CodeGen_Debug.props
new file mode 100644
index 0000000000..13c1294872
--- /dev/null
+++ b/Source/VSProps/CodeGen_Debug.props
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <ImportGroup Label="PropertySheets" />
+ <PropertyGroup Label="UserMacros" />
+ <PropertyGroup />
+ <ItemDefinitionGroup>
+ <ClCompile>
+ <PreprocessorDefinitions>_DEBUG;_SECURE_SCL=1;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+ <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
+ <Optimization>Disabled</Optimization>
+ </ClCompile>
+ </ItemDefinitionGroup>
+ <ItemGroup />
+</Project> \ No newline at end of file