forked from bradparks/openLR__haxe__line_rider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.xml
36 lines (27 loc) · 1.27 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
<?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.5" package="com.kevansevans.openLR" version="0.0.5" company="Kaelan Evans" />
<set name="AIR_SDK" value="C:/AIR_SDK" />
<!--- It is important that this value is changed on your personal system wherever the Air SDK was installed -->
<!-- output -->
<app main="Main" file="openLR" path="bin" />
<window background="#CCCCCC" fps="60" />
<window width="1280" height="720" if="cpp" />
<window width="1280" height="720" if="flash" />
<window width="1920" height="1080" if="js" />
<window orientation="landscape" vsync="true" antialiasing="4"/>
<!-- classpath, haxe libs -->
<source path="src" />
<haxelib name="openfl" />
<haxelib name="actuate" />
<!-- assets -->
<icon path="assets/logo.png" />
<assets path="assets/fonts" rename="fonts" embed="true" />
<assets path="assets/flash" rename="swf" />
<assets path="assets/img" rename="img"/>
<assets path="assets/defaults" rename="defaults"/>
<haxeflag name="-dce full" />
<library path="assets/flash/olr_assets.swf" preload="true" generate="true" id="swf-library" if="flash" />
</project>