forked from jgranick/PiratePig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.nmml
45 lines (33 loc) · 1.45 KB
/
project.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
41
42
43
44
45
<?xml version="1.0" encoding="utf-8"?>
<project>
<meta title="Pirate Pig" package="com.eclecticdesignstudio.piratepig" version="1.0.0" company="Eclectic Design Studio" />
<app path="Export" file="PiratePig" main="com.eclecticdesignstudio.piratepig.PiratePig" />
<window width="800" height="600" if="desktop" />
<window width="0" height="0" if="web" />
<window orientation="portrait" if="mobile" />
<window fps="60" />
<!-- <window shaders="true" if="desktop" /> -->
<source path="Source" />
<haxelib name="nme" />
<haxelib name="actuate" />
<assets path="Assets/fonts" rename="fonts" include="*.ttf" />
<assets path="Assets/images" rename="images" include="*" exclude="icon.svg" />
<icon path="Assets/images/icon.svg" />
<assets path="Assets/sounds" rename="sounds" if="web">
<sound path="3.mp3" id="sound3" />
<sound path="4.mp3" id="sound4" />
<sound path="5.mp3" id="sound5" />
<music path="theme.mp3" id="soundTheme" />
</assets>
<assets path="Assets/sounds" rename="sounds" unless="web">
<sound path="3.wav" id="sound3" />
<sound path="4.wav" id="sound4" />
<sound path="5.wav" id="sound5" />
<music path="theme.mp3" id="soundTheme" />
</assets>
<section if="release-sign">
<certificate path="C:\Development\Android\eclecticdesignstudio.keystore" if="android" />
<certificate path="~/Development/BlackBerry/author.p12" if="blackberry" />
</section>
<haxeflag name="--dead-code-elimination" if="html5" />
</project>