This repository has been archived by the owner on Mar 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Project.xml
71 lines (52 loc) · 2.72 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?xml version="1.0" encoding="utf-8"?>
<project xmlns="http://lime.software/project/1.0.3" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://lime.software/project/1.0.3 http://lime.software/xsd/project-1.0.3.xsd">
<!-- _________________________ Application Settings _________________________ -->
<app title="Friday Night Funkin' Izzy Engine" file="IzzyEngine" main="Main" version="0.0.1" company="gedehari" />
<app preloader="flixel.system.FlxPreloader" />
<set name="SWF_VERSION" value="11.8" />
<!-- ____________________________ Window Settings ___________________________ -->
<window width="1280" height="720" fps="60" background="#000000" hardware="true" vsync="false" />
<window if="html5" resizable="true" />
<window if="desktop" orientation="landscape" fullscreen="false" resizable="true" />
<!-- _____________________________ Path Settings ____________________________ -->
<set name="BUILD_DIR" value="export/debug" if="debug" />
<set name="BUILD_DIR" value="export/release" unless="debug" />
<source path="source" />
<assets path="assets/default" /> <!-- Embed the default group because it's important -->
<assets path="assets" type="template" />
<assets path="songs" type="template" />
<assets path="data" type="template" />
<!-- _______________________________ Libraries ______________________________ -->
<!-- HaxeFlixel libaries -->
<haxelib name="flixel" />
<haxelib name="flixel-addons" />
<haxelib name="flixel-ui" />
<!-- Scripting support -->
<haxelib name="hscript" />
<!-- Discord Rich Presence support -->
<haxelib name="discord_rpc" />
<!-- ______________________________ Haxedefines _____________________________ -->
<!--<haxedef name="FLX_RECORD" />-->
<!--<haxedef name="FLX_NO_MOUSE_ADVANCED" />-->
<!--<haxedef name="FLX_NO_NATIVE_CURSOR" />-->
<haxedef name="FLX_NO_MOUSE" if="mobile" />
<haxedef name="FLX_NO_KEYBOARD" if="mobile" />
<haxedef name="FLX_NO_TOUCH" if="desktop" />
<!--<haxedef name="FLX_NO_GAMEPAD" />-->
<haxedef name="FLX_NO_SOUND_TRAY" />
<!--<haxedef name="FLX_NO_SOUND_SYSTEM" />-->
<haxedef name="FLX_NO_FOCUS_LOST_SCREEN" />
<haxedef name="FLX_NO_DEBUG" unless="debug" />
<!-- Akways enable Null Object Reference check for crash dialog -->
<haxedef name="HXCPP_CHECK_POINTER" if="release" />
<haxedef name="HXCPP_STACK_LINE" if="release" />
<haxedef name="hscriptPos" />
<!-- _________________________________ Custom _______________________________ -->
<!-- Build external crash reporter with platform-dependent batch script -->
<section if="BUILD_CRASH_DIALOG">
<section if="release">
<postbuild cmd="build-crash-dialog.bat" if="windows" />
<postbuild cmd="./build-crash-dialog.sh" if="linux" />
</section>
</section>
</project>