-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathenv.props
More file actions
22 lines (22 loc) · 1.25 KB
/
env.props
File metadata and controls
22 lines (22 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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>$(SolutionDir)build\$(Platform)\$(Configuration)\</OutDir>
<IntDir>$(SolutionDir)build\intermediate\$(ProjectName)\$(Platform)\$(Configuration)\</IntDir>
<IncludePath>$(SolutionDir)3rd_party\include;$(SolutionDir)3rd_party\python37\include;$(SolutionDir)c2py\include;$(ProjectDir)include;$(ProjectDir);$(IncludePath)</IncludePath>
<LibraryPath>$(SolutionDir)3rd_party\python37\libs;$(ProjectDir)libs;$(LibraryPath)</LibraryPath>
<ExecutablePath>$(ProjectDir)libs;$(ExecutablePath)</ExecutablePath>
</PropertyGroup>
<ItemDefinitionGroup>
<ClCompile>
<LanguageStandard>stdcpp17</LanguageStandard>
<DisableSpecificWarnings>4819</DisableSpecificWarnings>
<PreprocessorDefinitions>_WINDLL;_SILENCE_CXX17_CODECVT_HEADER_DEPRECATION_WARNING;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<AdditionalOptions>/bigobj %(AdditionalOptions)</AdditionalOptions>
</ClCompile>
</ItemDefinitionGroup>
<ItemGroup />
</Project>