-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathinclude.xml
28 lines (21 loc) · 926 Bytes
/
include.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
<?xml version="1.0" encoding="utf-8"?>
<project>
<!-- General -->
<set name="SWF_VERSION" value="11.8" />
<!-- DJFlixel -->
<assets path="assets/ui_atlas.png" embed="true"/>
<!-- Override the build dir, useful if you want to build on /tmp/ or a ramdisk on windows -->
<app path="${OUT}" if="OUT"/>
<!-- Flixel Defines -->
<haxedef name="FLX_NO_DEBUG" unless="debug" />
<haxedef name="FLX_NO_TOUCH" unless="mobile"/>
<haxedef name="FLX_NO_MOUSE" if="mobile"/>
<haxedef name="FLX_NO_KEYBOARD" if="mobile"/>
<!-- `define` sets a value to be read by Project.xml and also Haxe -->
<define name="MP3" if="flash"/>
<!-- Because I am using Reflect to get the easing functions, make sure DCE won't eat them -->
<haxeflag name="--macro keep('flixel.tweens.FlxEase')"/>
<!-- djFlixel Defines (set with haxedef)
HOT_LOAD : Enables the use of D.assets.reload on reset, enabled on debug only
-->
</project>