Skip to content

Commit 362612e

Browse files
initial commit
1 parent 173ffee commit 362612e

35 files changed

+3600
-0
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,3 +83,9 @@ lint/generated/
8383
lint/outputs/
8484
lint/tmp/
8585
# lint/reports/
86+
87+
# Build Folders
88+
**/x64
89+
**/x86
90+
**/ARM
91+
**/.vs
Lines changed: 234 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,234 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<ItemGroup Label="ProjectConfigurations">
4+
<ProjectConfiguration Include="Debug|ARM">
5+
<Configuration>Debug</Configuration>
6+
<Platform>ARM</Platform>
7+
</ProjectConfiguration>
8+
<ProjectConfiguration Include="Release|ARM">
9+
<Configuration>Release</Configuration>
10+
<Platform>ARM</Platform>
11+
</ProjectConfiguration>
12+
<ProjectConfiguration Include="Debug|ARM64">
13+
<Configuration>Debug</Configuration>
14+
<Platform>ARM64</Platform>
15+
</ProjectConfiguration>
16+
<ProjectConfiguration Include="Release|ARM64">
17+
<Configuration>Release</Configuration>
18+
<Platform>ARM64</Platform>
19+
</ProjectConfiguration>
20+
<ProjectConfiguration Include="Debug|x64">
21+
<Configuration>Debug</Configuration>
22+
<Platform>x64</Platform>
23+
</ProjectConfiguration>
24+
<ProjectConfiguration Include="Release|x64">
25+
<Configuration>Release</Configuration>
26+
<Platform>x64</Platform>
27+
</ProjectConfiguration>
28+
<ProjectConfiguration Include="Debug|x86">
29+
<Configuration>Debug</Configuration>
30+
<Platform>x86</Platform>
31+
</ProjectConfiguration>
32+
<ProjectConfiguration Include="Release|x86">
33+
<Configuration>Release</Configuration>
34+
<Platform>x86</Platform>
35+
</ProjectConfiguration>
36+
</ItemGroup>
37+
<PropertyGroup Label="Globals">
38+
<ProjectGuid>{d4c91133-ecc8-4052-8a17-4973f9b347b3}</ProjectGuid>
39+
<Keyword>Android</Keyword>
40+
<RootNamespace>AndroidDodgeGame</RootNamespace>
41+
<DefaultLanguage>en-US</DefaultLanguage>
42+
<MinimumVisualStudioVersion>14.0</MinimumVisualStudioVersion>
43+
<ApplicationType>Android</ApplicationType>
44+
<ApplicationTypeRevision>3.0</ApplicationTypeRevision>
45+
</PropertyGroup>
46+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
47+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
48+
<ConfigurationType>DynamicLibrary</ConfigurationType>
49+
<UseDebugLibraries>true</UseDebugLibraries>
50+
<PlatformToolset>Clang_5_0</PlatformToolset>
51+
</PropertyGroup>
52+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
53+
<ConfigurationType>DynamicLibrary</ConfigurationType>
54+
<UseDebugLibraries>false</UseDebugLibraries>
55+
<PlatformToolset>Clang_5_0</PlatformToolset>
56+
</PropertyGroup>
57+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'" Label="Configuration">
58+
<ConfigurationType>DynamicLibrary</ConfigurationType>
59+
<UseDebugLibraries>true</UseDebugLibraries>
60+
<PlatformToolset>Clang_5_0</PlatformToolset>
61+
</PropertyGroup>
62+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'" Label="Configuration">
63+
<ConfigurationType>DynamicLibrary</ConfigurationType>
64+
<UseDebugLibraries>false</UseDebugLibraries>
65+
<PlatformToolset>Clang_5_0</PlatformToolset>
66+
</PropertyGroup>
67+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'" Label="Configuration">
68+
<ConfigurationType>DynamicLibrary</ConfigurationType>
69+
<UseDebugLibraries>true</UseDebugLibraries>
70+
<PlatformToolset>Clang_5_0</PlatformToolset>
71+
</PropertyGroup>
72+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'" Label="Configuration">
73+
<ConfigurationType>DynamicLibrary</ConfigurationType>
74+
<UseDebugLibraries>false</UseDebugLibraries>
75+
<PlatformToolset>Clang_5_0</PlatformToolset>
76+
</PropertyGroup>
77+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'" Label="Configuration">
78+
<ConfigurationType>DynamicLibrary</ConfigurationType>
79+
<UseDebugLibraries>true</UseDebugLibraries>
80+
<PlatformToolset>Clang_5_0</PlatformToolset>
81+
</PropertyGroup>
82+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'" Label="Configuration">
83+
<ConfigurationType>DynamicLibrary</ConfigurationType>
84+
<UseDebugLibraries>false</UseDebugLibraries>
85+
<PlatformToolset>Clang_5_0</PlatformToolset>
86+
</PropertyGroup>
87+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
88+
<ImportGroup Label="ExtensionSettings">
89+
</ImportGroup>
90+
<ImportGroup Label="Shared">
91+
</ImportGroup>
92+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
93+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
94+
</ImportGroup>
95+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
96+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
97+
</ImportGroup>
98+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
99+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
100+
</ImportGroup>
101+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
102+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
103+
</ImportGroup>
104+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">
105+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
106+
</ImportGroup>
107+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">
108+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
109+
</ImportGroup>
110+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
111+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
112+
</ImportGroup>
113+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
114+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
115+
</ImportGroup>
116+
<PropertyGroup Label="UserMacros" />
117+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'" />
118+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'" />
119+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'" />
120+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'" />
121+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" />
122+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
123+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'" />
124+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'" />
125+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">
126+
<ClCompile>
127+
<PrecompiledHeader>Use</PrecompiledHeader>
128+
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
129+
<CompileAs>CompileAsCpp</CompileAs>
130+
</ClCompile>
131+
<Link>
132+
<LibraryDependencies>%(LibraryDependencies);EGL;GLESv3;</LibraryDependencies>
133+
<AdditionalOptions>-lm</AdditionalOptions>
134+
</Link>
135+
</ItemDefinitionGroup>
136+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">
137+
<ClCompile>
138+
<PrecompiledHeader>Use</PrecompiledHeader>
139+
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
140+
<CompileAs>CompileAsCpp</CompileAs>
141+
</ClCompile>
142+
<Link>
143+
<LibraryDependencies>%(LibraryDependencies);EGL;GLESv3;</LibraryDependencies>
144+
<AdditionalOptions>-lm</AdditionalOptions>
145+
</Link>
146+
</ItemDefinitionGroup>
147+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
148+
<ClCompile>
149+
<PrecompiledHeader>Use</PrecompiledHeader>
150+
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
151+
<CompileAs>CompileAsCpp</CompileAs>
152+
</ClCompile>
153+
<Link>
154+
<LibraryDependencies>%(LibraryDependencies);EGL;GLESv3;</LibraryDependencies>
155+
<AdditionalOptions>-lm</AdditionalOptions>
156+
</Link>
157+
</ItemDefinitionGroup>
158+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
159+
<ClCompile>
160+
<PrecompiledHeader>Use</PrecompiledHeader>
161+
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
162+
<CompileAs>CompileAsCpp</CompileAs>
163+
</ClCompile>
164+
<Link>
165+
<LibraryDependencies>%(LibraryDependencies);EGL;GLESv3;</LibraryDependencies>
166+
<AdditionalOptions>-lm</AdditionalOptions>
167+
</Link>
168+
</ItemDefinitionGroup>
169+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
170+
<ClCompile>
171+
<PrecompiledHeader>Use</PrecompiledHeader>
172+
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
173+
<CompileAs>CompileAsCpp</CompileAs>
174+
</ClCompile>
175+
<Link>
176+
<LibraryDependencies>%(LibraryDependencies);EGL;GLESv3;</LibraryDependencies>
177+
<AdditionalOptions>-lm</AdditionalOptions>
178+
</Link>
179+
</ItemDefinitionGroup>
180+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
181+
<ClCompile>
182+
<PrecompiledHeader>Use</PrecompiledHeader>
183+
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
184+
<CompileAs>CompileAsCpp</CompileAs>
185+
</ClCompile>
186+
<Link>
187+
<LibraryDependencies>%(LibraryDependencies);EGL;GLESv3;</LibraryDependencies>
188+
<AdditionalOptions>-lm</AdditionalOptions>
189+
</Link>
190+
</ItemDefinitionGroup>
191+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
192+
<ClCompile>
193+
<PrecompiledHeader>Use</PrecompiledHeader>
194+
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
195+
<CompileAs>CompileAsCpp</CompileAs>
196+
</ClCompile>
197+
<Link>
198+
<LibraryDependencies>%(LibraryDependencies);EGL;GLESv3;</LibraryDependencies>
199+
<AdditionalOptions>-lm</AdditionalOptions>
200+
</Link>
201+
</ItemDefinitionGroup>
202+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
203+
<ClCompile>
204+
<PrecompiledHeader>Use</PrecompiledHeader>
205+
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
206+
<CompileAs>CompileAsCpp</CompileAs>
207+
</ClCompile>
208+
<Link>
209+
<LibraryDependencies>%(LibraryDependencies);EGL;GLESv3;</LibraryDependencies>
210+
<AdditionalOptions>-lm</AdditionalOptions>
211+
</Link>
212+
</ItemDefinitionGroup>
213+
<ItemGroup>
214+
<ClInclude Include="contextual.h" />
215+
<ClInclude Include="graphics.h" />
216+
<ClInclude Include="pkmath.h" />
217+
<ClInclude Include="meshutility.h" />
218+
<ClInclude Include="util.h" />
219+
<ClInclude Include="pch.h" />
220+
<ClInclude Include="android_native_app_glue.h" />
221+
</ItemGroup>
222+
<ItemGroup>
223+
<ClCompile Include="android_native_app_glue.c" />
224+
<ClCompile Include="contextual.cpp" />
225+
<ClCompile Include="graphics.cpp" />
226+
<ClCompile Include="main.cpp" />
227+
<ClCompile Include="meshutility.cpp" />
228+
<ClCompile Include="pkmath.cpp" />
229+
<ClCompile Include="util.cpp" />
230+
</ItemGroup>
231+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
232+
<ImportGroup Label="ExtensionTargets">
233+
</ImportGroup>
234+
</Project>
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<ItemGroup>
4+
<ClInclude Include="pch.h" />
5+
<ClInclude Include="android_native_app_glue.h" />
6+
<ClInclude Include="graphics.h" />
7+
<ClInclude Include="util.h" />
8+
<ClInclude Include="meshutility.h" />
9+
<ClInclude Include="pkmath.h" />
10+
<ClInclude Include="contextual.h" />
11+
</ItemGroup>
12+
<ItemGroup>
13+
<ClCompile Include="android_native_app_glue.c" />
14+
<ClCompile Include="main.cpp" />
15+
<ClCompile Include="graphics.cpp" />
16+
<ClCompile Include="meshutility.cpp" />
17+
<ClCompile Include="util.cpp" />
18+
<ClCompile Include="pkmath.cpp" />
19+
<ClCompile Include="contextual.cpp" />
20+
</ItemGroup>
21+
</Project>
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup>
4+
<ShowAllFiles>true</ShowAllFiles>
5+
</PropertyGroup>
6+
</Project>

0 commit comments

Comments
 (0)