-
Notifications
You must be signed in to change notification settings - Fork 7
/
project.xml
29 lines (23 loc) · 979 Bytes
/
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
<?xml version="1.0" encoding="utf-8"?>
<project>
<!-- metadata, make sure 'package' is at least 2 segments (ie. com.myproject) -->
<app file="Gamepad" title="Gamepad" main="com.iainlobb.gamepad.Main" package="com.iainlobb.gamepad"
version="1.0.0" company="Adam Harte ([email protected])" />
<!-- output -->
<window width="550" height="400" fps="60" orientation="landscape" resizable="true" />
<window width="0" height="0" fps="60" orientation="landscape" fullscreen="true" if="mobile" />
<set name="BUILD_DIR" value="bin" />
<set name="SWF_VERSION" value="10.1" />
<!-- classpath, haxe libs -->
<source name="src" />
<haxelib name="openfl" />
<!-- assets -->
<icon name="assets/nme.svg" />
<assets path="assets" include="*" exclude="nme.svg" />
<!-- DLLs -->
<ndll name="std" />
<ndll name="regexp" />
<ndll name="zlib" />
<!-- Windows app: hide console -->
<!--<setenv name="no_console" value="1" />-->
</project>