forked from increpare/SchneeSpiel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.xml
executable file
·57 lines (45 loc) · 1.47 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?xml version="1.0" encoding="utf-8"?>
<project>
<set name="windowwidth" value="160" />
<set name="windowheight" value="120" />
<meta
title="ScheeSpiel"
package="com.increpare.SchneeSpiel"
version="1.0.0"
company="increpare games"
/>
<app swf-version="17.0" if="flash"/>
<app
main="haxegon.Load"
path="bin"
file="ScheeSpiel"
/>
<window width="${windowwidth}" height="${windowheight}" if="flash || cpp || neko"></window>
<window width="0" height="0" if="html5 || mobile"></window>
<window
fps="30"
background="0x000000"
orientation="landscape"
hardware="true"
vsync="true"
allow-high-dpi="true"
></window>
<source path="src" />
<source path="plugins" />
<haxelib name="openfl" />
<haxelib name="haxegon" />
<haxelib name="compiletime" />
<dependency name="js/recorder.js" />
<dependency name="js/rng.js" />
<dependency name="js/sfxr.js" />
<template path="js/recorder.js" rename="js/recorder.js" if="html5" />
<template path="js/rng.js" rename="js/rng.js" if="html5" />
<template path="js/sfxr.js" rename="js/sfxr.js" if="html5" />
<haxedef name="windowwidth" value="${windowwidth}" />
<haxedef name="windowheight" value="${windowheight}" />
<haxeflag name="--connect" value="6000"/>
<assets path="data" exclude="*.mp3" if="cpp || neko"/>
<assets path="data" exclude="*.ogg" if="flash"/>
<assets path="data" if="html5"/>
<icon path="data/icon.png"/>
</project>