-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.xml
36 lines (28 loc) · 1.07 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="HeadIt" package="HeadIt" version="1.0.0" company="Alejandro Grunwaldt" />
<!-- output -->
<app main="Main" file="HeadIt" path="bin" />
<window background="#009100" fps="60" />
<window width="900" height="508" unless="mobile" />
<window fullscreen="false" resizable="false" />
<window orientation="landscape" vsync="false" antialiasing="0" if="cpp" />
<!-- classpath, haxe libs -->
<source path="src" />
<haxelib name="openfl" />
<haxelib name="actuate" />
<haxelib name="flixel"/>
<haxelib name="flixel-addons" />
<haxelib name="nape" />
<haxelib name="random" />
<!-- assets -->
<icon path="assets/openfl.svg" />
<assets path="assets/img" rename="img" />
<assets path="assets/music" rename="music" />
<assets path="assets/fonts" rename="fonts" />
<!-- optimize output
<haxeflag name="-dce full" /> -->
<haxedef name="FLX_NO_DEBUG" />
</project>