-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBasicPropertySheet.props
More file actions
43 lines (37 loc) · 1.24 KB
/
BasicPropertySheet.props
File metadata and controls
43 lines (37 loc) · 1.24 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
38
39
40
41
42
43
<?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>
<_PropertySheetDisplayName>Basic</_PropertySheetDisplayName>
</PropertyGroup>
<!-- デバッグ -->
<ItemDefinitionGroup Condition="'$(Configuration)'=='Debug'">
<ClCompile>
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
</ClCompile>
</ItemDefinitionGroup>
<!-- リリース -->
<ItemDefinitionGroup Condition="'$(Configuration)'=='Release'">
<ClCompile>
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
</ClCompile>
</ItemDefinitionGroup>
<!-- 警告抑制 -->
<ItemDefinitionGroup>
<ClCompile>
<DisableSpecificWarnings>4100;4189</DisableSpecificWarnings>
</ClCompile>
</ItemDefinitionGroup>
<!-- モデル -->
<ItemDefinitionGroup>
<MeshContentTask>
<ContentOutput>$(ProjectDir)Resources\Models\%(Filename).cmo</ContentOutput>
</MeshContentTask>
<FxCompile>
<ObjectFileOutput>$(ProjectDir)Resources\Shaders\%(Filename).cso</ObjectFileOutput>
</FxCompile>
</ItemDefinitionGroup>
<ItemGroup />
</Project>