-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathAngles.vcxproj
65 lines (65 loc) · 2.75 KB
/
Angles.vcxproj
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Label="NsightTegraProject">
<NsightTegraProjectRevisionNumber>6</NsightTegraProjectRevisionNumber>
</PropertyGroup>
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Tegra-Android">
<Configuration>Debug</Configuration>
<Platform>Tegra-Android</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|Tegra-Android">
<Configuration>Release</Configuration>
<Platform>Tegra-Android</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{21282D8F-A627-44B9-A8A3-DA8F29479E78}</ProjectGuid>
<RootNamespace></RootNamespace>
<ProjectName>Angles</ProjectName>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)'=='Release|Tegra-Android'">
<AndroidMinAPI>android-10</AndroidMinAPI>
<AndroidTargetAPI>android-10</AndroidTargetAPI>
</PropertyGroup>
<PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)'=='Debug|Tegra-Android'">
<AndroidMinAPI>android-10</AndroidMinAPI>
<AndroidTargetAPI>android-10</AndroidTargetAPI>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="ExtensionSettings"></ImportGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Tegra-Android'">
<Link>
<AdditionalDependencies>android;GLESv2;EGL</AdditionalDependencies>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Tegra-Android'">
<Link>
<AdditionalDependencies>android;GLESv2;EGL</AdditionalDependencies>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<None Include="AndroidManifest.xml" />
<None Include="jni\Android.mk" />
<None Include="jni\Application.mk" />
</ItemGroup>
<ItemGroup>
<ClCompile Include="jni\android_native_app_glue.c" />
<ClCompile Include="jni\main.cpp" />
<ClCompile Include="jni\shader_utils.c" />
</ItemGroup>
<ItemGroup>
<Image Include="res\drawable-hdpi\icon.png" />
<Image Include="res\drawable-mdpi\icon.png" />
<Image Include="res\drawable-xhdpi\icon.png" />
<Image Include="res\drawable-xxhdpi\icon.png" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="jni\android_native_app_glue.h" />
<ClInclude Include="jni\log.h" />
<ClInclude Include="jni\shader_utils.h" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets"></ImportGroup>
</Project>