diff options
| author | stijn | 2014-05-05 12:18:27 +0200 |
|---|---|---|
| committer | stijn | 2014-05-08 10:06:43 +0200 |
| commit | 01d6be4d512118d39ef52f79ca9ddddd2bba3f32 (patch) | |
| tree | e409a3f5397df34518027a2ce5f62065196f82d7 /windows/msvc/common.props | |
| parent | c1c32d65af038ba1b2a2a8dd69e3f7e63eac5f3e (diff) | |
Windows MSVC port
Extend the windows port so it compiles with the toolchain from Visual Studio 2013
Diffstat (limited to 'windows/msvc/common.props')
| -rw-r--r-- | windows/msvc/common.props | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/windows/msvc/common.props b/windows/msvc/common.props new file mode 100644 index 000000000..300de46a5 --- /dev/null +++ b/windows/msvc/common.props @@ -0,0 +1,22 @@ +<?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>
+ <OutDir>$(ProjectDir)</OutDir>
+ <IntDir>$(ProjectDir)build\$(Configuration)$(Platform)\</IntDir>
+ </PropertyGroup>
+ <ItemDefinitionGroup>
+ <ClCompile>
+ <AdditionalIncludeDirectories>.\;.\build;.\msvc;..\py</AdditionalIncludeDirectories>
+ <PreprocessorDefinitions>_USE_MATH_DEFINES;_CRT_SECURE_NO_WARNINGS;_MBCS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+ <SDLCheck>false</SDLCheck>
+ <WarningLevel>Level1</WarningLevel>
+ <ExceptionHandling>false</ExceptionHandling>
+ </ClCompile>
+ <Link>
+ <GenerateDebugInformation>true</GenerateDebugInformation>
+ </Link>
+ </ItemDefinitionGroup>
+ <ItemGroup />
+</Project>
\ No newline at end of file |
