aboutsummaryrefslogtreecommitdiff
path: root/w32/common/apps-build-settings.props
diff options
context:
space:
mode:
Diffstat (limited to 'w32/common/apps-build-settings.props')
-rw-r--r--w32/common/apps-build-settings.props32
1 files changed, 32 insertions, 0 deletions
diff --git a/w32/common/apps-build-settings.props b/w32/common/apps-build-settings.props
new file mode 100644
index 00000000..45e7ed7a
--- /dev/null
+++ b/w32/common/apps-build-settings.props
@@ -0,0 +1,32 @@
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3 <PropertyGroup Condition="'$(Configuration)'=='Debug-static'">
4 <TargetName>$(ProjectName)_d</TargetName>
5 </PropertyGroup>
6 <PropertyGroup Condition="'$(Configuration)'=='Debug-dll'">
7 <TargetName>$(ProjectName)-dll_d</TargetName>
8 </PropertyGroup>
9 <PropertyGroup Condition="'$(Configuration)'=='Release-static'">
10 <TargetName>$(ProjectName)</TargetName>
11 </PropertyGroup>
12 <PropertyGroup Condition="'$(Configuration)'=='Release-dll'">
13 <TargetName>$(ProjectName)-dll</TargetName>
14 </PropertyGroup>
15 <ItemDefinitionGroup>
16 <ClCompile>
17 <PreprocessorDefinitions>_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
18 </ClCompile>
19 <Link>
20 <SubSystem>Console</SubSystem>
21 </Link>
22 <ProjectReference />
23 </ItemDefinitionGroup>
24 <ItemDefinitionGroup>
25 <ClCompile>
26 <RuntimeLibrary Condition="'$(Configuration)'=='Debug-static'">MultiThreadedDebug</RuntimeLibrary>
27 <RuntimeLibrary Condition="'$(Configuration)'=='Debug-dll'">MultiThreadedDebugDLL</RuntimeLibrary>
28 <RuntimeLibrary Condition="'$(Configuration)'=='Release-static'">MultiThreaded</RuntimeLibrary>
29 <RuntimeLibrary Condition="'$(Configuration)'=='Release-dll'">MultiThreadedDLL</RuntimeLibrary>
30 </ClCompile>
31 </ItemDefinitionGroup>
32</Project>