-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathSourceEngine.props
More file actions
37 lines (37 loc) · 1.72 KB
/
Copy pathSourceEngine.props
File metadata and controls
37 lines (37 loc) · 1.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?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">
<Inc>$(SolutionDir)..\include\</Inc>
</PropertyGroup>
<PropertyGroup>
<OutDir>$(SolutionDir)..\bin\$(Platform)\$(Configuration)</OutDir>
<IntDir>$(SolutionDir)..\intermediate\$(Platform)\$(Configuration)\$(ProjectName)</IntDir>
</PropertyGroup>
<ItemDefinitionGroup>
<ClCompile>
<AdditionalIncludeDirectories>$(SolutionDir)..\include\;$(SolutionDir)..\sdk\include\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<WarningLevel>TurnOffAllWarnings</WarningLevel>
<PreprocessorDefinitions>NO_MALLOC_OVERRIDE;_CRT_NO_VA_START_VALIDATION;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<LanguageStandard>stdcpp14</LanguageStandard>
<ConformanceMode>false</ConformanceMode>
<RuntimeTypeInfo>true</RuntimeTypeInfo>
<SDLCheck>false</SDLCheck>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<FloatingPointModel>Fast</FloatingPointModel>
<EnableEnhancedInstructionSet>StreamingSIMDExtensions2</EnableEnhancedInstructionSet>
</ClCompile>
<Link>
<ImportLibrary>$(SolutionDir)..\lib\$(Platform)\$(Configuration)\$(TargetName)$(TargetExt)</ImportLibrary>
<AdditionalLibraryDirectories>$(SolutionDir)..\sdk\lib\$(Platform)</AdditionalLibraryDirectories>
</Link>
<Lib>
<OutputFile>$(SolutionDir)..\lib\$(Platform)\$(Configuration)\$(TargetName)$(TargetExt)</OutputFile>
</Lib>
</ItemDefinitionGroup>
<ItemGroup>
<BuildMacro Include="Inc">
<Value>$(Inc)</Value>
</BuildMacro>
</ItemGroup>
</Project>