forked from hollowspecter/1gam-MAR
-
Notifications
You must be signed in to change notification settings - Fork 0
/
application.nmml
36 lines (29 loc) · 1.28 KB
/
application.nmml
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="TestProject" package="de.blogspot.hollowspecter.test.TestProject" version="1.0.0" company="Vivien Baguio" />
<!-- output -->
<app main="de.blogspot.hollowspecter.test.Main" file="TestProject" path="bin" />
<window background="#333333" fps="60" />
<window width="800" height="480" unless="mobile" />
<window orientation="landscape" vsync="true" antialiasing="0" if="cpp" />
<!-- classpath, haxe libs -->
<classpath name="src" />
<haxelib name="nme" />
<haxelib name="HaxePunk" />
<!-- assets -->
<icon path="assets/nme.svg" />
<assets path="assets/gfx" rename="gfx" type="image" include="*.png" />
<assets path="assets/sfx" rename="sfx" type="sound" include="*.wav" />
<assets path="assets/music" rename="music" type="music" include="*.mp3" />
<assets path="assets/font" rename="font" type="font" include="*.ttf" />
<!-- DLLs -->
<ndll name="std" />
<ndll name="regexp" />
<ndll name="zlib" />
<ndll name="nme" haxelib="nme" />
<!-- optimize JS output -->
<haxeflag name="--dead-code-elimination" if="html5" />
<haxeflag name="--js-modern" if="html5" />
</project>