This repository has been archived by the owner on Jul 31, 2020. It is now read-only.
forked from angryoctopus/lgmodeler
-
Notifications
You must be signed in to change notification settings - Fork 14
/
project.xml
69 lines (45 loc) · 1.95 KB
/
project.xml
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
66
67
68
69
<?xml version="1.0" encoding="utf-8"?>
<project>
<!-- ################################ SET ################################### -->
<meta title="TileCraft" package="com.akifox.tilecraft" version="1.0.0-alpha9" company="Akifox Studio" /> <!-- #TODEPLOY -->
<app main="Main" path="Export" file="TileCraft" />
<!-- ############################### WINDOW ################################# -->
<window fps="60" background="0x242424" />
<window width="950" height="650" resizable="true" unless="mobile" />
<window fullscreen="true" if="mobile" />
<window orientation="landscape" />
<window vsync="true" antialiasing="4" if="cpp" />
<window hardware="true" allow-shaders="true" require-shaders="false" if="cpp"/>
<icon path="assets/icon.svg" />
<!-- ################################ CODE ################################## -->
<source path="src" />
<haxelib name="format" />
<!-- Openfl Libraries -->
<haxelib name="openfl" />
<haxelib name="actuate" />
<!-- Akifox Libraries -->
<haxelib name="akifox-transform" />
<haxelib name="akifox-asynchttp" />
<haxelib name="plik" />
<!-- Other Libraries -->
<haxelib name="compiletime" />
<haxelib name="hxColorToolkit" />
<haxelib name="systools" />
<!-- ############################# CUSTOM BUILDS ############################ -->
<!-- PLATFORM TYPES:
DESKTOP (WINDOWS, MAC, LINUX)
WEB (FLASH, HTML5, FIREFOX, EMSCRIPTEN)
MOBILE (ANDROID, BLACKBERRY, IOS, TIZEN, WEBOS)
CONSOLE -->
<haxedef name="legacy" if="v2" />
<set name="SWF_VERSION" value="11.8" />
<!-- Update check -->
<haxedef name="app_checkupdates" if="desktop" />
<!-- ################################ ASSETS ################################ -->
<!-- Generic graphics -->
<assets path="assets/graphics/generic" include="*.png|*.jpg|*.xml" />
<assets path="assets/fonts" include="*.ttf" />
<assets path="assets/styles" include="*.json" />
<!-- PLIK Debug -->
<assets path="assets/debug" include="*" />
</project>