-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCastleEngineManifest.xml
More file actions
60 lines (58 loc) · 2.09 KB
/
CastleEngineManifest.xml
File metadata and controls
60 lines (58 loc) · 2.09 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?xml version="1.0" encoding="utf-8"?>
<!--
Specify basic information about the project, including how this project is build.
See https://castle-engine.io/project_manifest for documentation of this file.
-->
<project name="TowerFight"
standalone_source="TowerFight_standalone.dpr"
game_units="GameInitialize"
qualified_name="ru.ephyre.towerfight"
author="ephyre team"
caption="Tower Fight"
screen_orientation="landscape"
>
<compiler_options>
<search_paths>
<path value="code/" />
<path value="code/HashLib4Pascal/HashLib/src/Base" />
<path value="code/HashLib4Pascal/HashLib/src/Interfaces" />
<path value="code/HashLib4Pascal/HashLib/src/Utils" />
<path value="code/HashLib4Pascal/HashLib/src/Crypto" />
<path value="code/HashLib4Pascal/HashLib/src/KDF" />
<path value="code/HashLib4Pascal/HashLib/src/Include" />
</search_paths>
<defines>
<define>CASTLE_GEO_SUPPORT_DISABLE</define>
<define>CASTLE_OBJ_SUPPORT_DISABLE</define>
<define>CASTLE_COLLADA_SUPPORT_DISABLE</define>
<define>CASTLE_SPINE_SUPPORT_DISABLE</define>
<define>CASTLE_STL_SUPPORT_DISABLE</define>
<define>CASTLE_MD3_SUPPORT_DISABLE</define>
<define>CASTLE_IMAGE_SUPPORT_DISABLE</define>
<define>CASTLE_COCOS2D_SUPPORT_DISABLE</define>
<define>CASTLE_TILED_MAP_SUPPORT_DISABLE</define>
<define>CASTLE_IFC_SUPPORT_DISABLE</define>
<define>CASTLE_3DS_SUPPORT_DISABLE</define>
<define>CASTLE_GLTF_SUPPORT_DISABLE</define>
</defines>
</compiler_options>
<dependencies>
<!-- read font files like .ttf -->
<dependency name="Freetype" />
<!-- read .gz files -->
<dependency name="Zlib" />
<!-- read .png files -->
<dependency name="Png" />
<!-- play sound -->
<dependency name="Sound" />
<!-- read .ogg (OggVorbis) compressed audio files -->
<dependency name="OggVorbis" />
<!-- ability to download using https (not only http) -->
<dependency name="Https" />
</dependencies>
<android>
<services>
<service name="keyboard" />
</services>
</android>
</project>