-
Notifications
You must be signed in to change notification settings - Fork 3
/
project.xml
30 lines (22 loc) · 909 Bytes
/
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
<?xml version="1.0" encoding="utf-8"?>
<project>
<!-- NMML reference: https://gist.github.com/1763850 -->
<!-- metadata, make sure 'package' is at least 3 segments (ie. com.mycompany.myproject) -->
<meta title="openLR Alpha 0.0.4" package="openLR" version="0.0.4" company="Kaelan Evans" />
<!-- output -->
<app main="Main" file="openLR" path="bin" />
<window background="#CCCCCC" fps="120" />
<window width="1280" height="720" unless="mobile" />
<window orientation="landscape" vsync="false" antialiasing="4" if="cpp" />
<!-- classpath, haxe libs -->
<source path="src" />
<haxelib name="openfl" />
<haxelib name="actuate" />
<!-- assets -->
<icon path="assets/icon.ico" />
<assets path="assets/icons" rename="icon" />
<assets path="assets/fonts" rename="fonts" />
<assets path="assets/flash" rename="swf" />
<!-- optimize output
<haxeflag name="-dce full" /> -->
</project>