-
Notifications
You must be signed in to change notification settings - Fork 1
/
application.nmml
40 lines (33 loc) · 1.39 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
37
38
39
40
<?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="Monastery" package="com.osgcc.Monastery" version="1.0.0" company="ValiumKnight" />
<!-- output -->
<app main="Main" file="Monastery" path="bin" />
<window background="#333333" fps="60" />
<window width="640" height="480" unless="mobile" />
<window orientation="landscape" vsync="true" antialiasing="0" if="cpp" />
<!-- classpath, haxe libs -->
<source path="src" />
<classpath name="src" />
<haxelib name="nme" />
<haxelib name="HaxePunk" />
<!-- assets -->
<icon path="assets/icon.svg" />
<assets path="assets/graphics" rename="graphics" include="*.png" />
<assets path="assets/sfx" rename="sfx" include="*.mp3" />
<assets path="assets/sfx" rename="sfx" include="*.wav" />
<assets path="assets/music" rename="music" include="*.mp3" />
<assets path="assets/music" rename="music" include="*.wav" />
<assets path="assets/font" rename="font" include="*.ttf" />
<assets path="assets/maps" rename="maps" include="*.tmx" />
<!-- 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>