diff options
Diffstat (limited to 'w32/common/apps-build-settings.vcxproj')
-rw-r--r-- | w32/common/apps-build-settings.vcxproj | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/w32/common/apps-build-settings.vcxproj b/w32/common/apps-build-settings.vcxproj new file mode 100644 index 00000000..45e7ed7a --- /dev/null +++ b/w32/common/apps-build-settings.vcxproj @@ -0,0 +1,32 @@ +<?xml version="1.0" encoding="utf-8"?> +<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup Condition="'$(Configuration)'=='Debug-static'"> + <TargetName>$(ProjectName)_d</TargetName> + </PropertyGroup> + <PropertyGroup Condition="'$(Configuration)'=='Debug-dll'"> + <TargetName>$(ProjectName)-dll_d</TargetName> + </PropertyGroup> + <PropertyGroup Condition="'$(Configuration)'=='Release-static'"> + <TargetName>$(ProjectName)</TargetName> + </PropertyGroup> + <PropertyGroup Condition="'$(Configuration)'=='Release-dll'"> + <TargetName>$(ProjectName)-dll</TargetName> + </PropertyGroup> + <ItemDefinitionGroup> + <ClCompile> + <PreprocessorDefinitions>_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> + </ClCompile> + <Link> + <SubSystem>Console</SubSystem> + </Link> + <ProjectReference /> + </ItemDefinitionGroup> + <ItemDefinitionGroup> + <ClCompile> + <RuntimeLibrary Condition="'$(Configuration)'=='Debug-static'">MultiThreadedDebug</RuntimeLibrary> + <RuntimeLibrary Condition="'$(Configuration)'=='Debug-dll'">MultiThreadedDebugDLL</RuntimeLibrary> + <RuntimeLibrary Condition="'$(Configuration)'=='Release-static'">MultiThreaded</RuntimeLibrary> + <RuntimeLibrary Condition="'$(Configuration)'=='Release-dll'">MultiThreadedDLL</RuntimeLibrary> + </ClCompile> + </ItemDefinitionGroup> +</Project> |