-
Notifications
You must be signed in to change notification settings - Fork 2
/
project.xml
31 lines (25 loc) · 949 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
30
31
<?xml version="1.0" encoding="utf-8"?>
<project>
<meta title="Tests" package="tests" version="1.0.0" company="example" />
<window fps="60" background="0x333333" />
<window width="640" height="480" resizable="true" unless="mobile" />
<window fullscreen="true" if="mobile" />
<window orientation="landscape" vsync="true" antialiasing="0" if="cpp" />
<haxeflag name="-D debug" if="debug"/>
<haxelib name="openfl" />
<haxelib name="menubar" />
<haxelib name="haxepunk" />
<section if="runDoc" >
<app file="Validation" main="EditorTest" path="build/doc" />
<source path="example/src" />
<haxelib name="filepicker" />
</section>
<section if="runTest">
<app file="Validation" main="TestMain" path="build/test" if="runTest"/>
<source path="test" />
<haxeflag name="-D mocks" />
<haxelib name="should" />
<haxelib name="should-openfl" />
<haxelib name="munit" />
</section>
</project>