-
Notifications
You must be signed in to change notification settings - Fork 1
/
application.nmml
31 lines (25 loc) · 941 Bytes
/
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
<?xml version="1.0" encoding="utf-8"?>
<project>
<!-- metadata, make sure 'package' is at least 2 segments (ie. com.myproject) -->
<app file="TestRobotHaxe" title="Test RobotHaxe" main="Main" package="com.zedia.testrobothaxe"
version="1.0.0" company="me" />
<!-- output -->
<window width="800" height="480" fps="60" background="0xFFFFFF" orientation="landscape" resizable="true" />
<set name="BUILD_DIR" value="bin" />
<!-- classpath, haxe libs -->
<classpath name="src" />
<classpath name="lib" />
<haxelib name="nme" />
<haxelib name="robothaxe" />
<!-- assets -->
<icon name="assets/nme.svg" />
<assets path="assets" include="*" exclude="nme.svg" />
<!-- DLLs -->
<ndll name="std" />
<ndll name="regexp" />
<ndll name="zlib" />
<ndll name="nme" haxelib="nme" />
<compilerflag name="--macro RTTI.generate()" />
<!-- Windows app: hide console -->
<!--<setenv name="no_console" value="1" />-->
</project>