generated from Joalor64GH/HaxeFlixel-Template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProject.xml
90 lines (62 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<?xml version="1.0" encoding="utf-8"?>
<project>
<!-- [ Application Settings ] -->
<app title="Rhythmo" file="Rhythmo" main="Main" version="1.0.0-pre" package="com.joalor64.rhythmo" company="Joalor64" />
<!-- [ Window Settings ] -->
<window width="1280" height="720" fps="60" background="#000000" hardware="true" vsync="false" />
<window if="desktop" orientation="landscape" fullscreen="false" resizable="true" allow-high-dpi="true" />
<window if="mac" orientation="auto" fullscreen="false" resizable="true" vsync="false" allow-high-dpi="true" />
<!-- [ Custom Defines ] -->
<define name="FUTURE_POLYMOD" if="desktop" />
<define name="UPDATE_CHECK" if="desktop release" />
<!-- [ 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" />
<assets path="mods" if="FUTURE_POLYMOD" />
<section if="desktop">
<assets path="alsoft.ini" if="windows" />
<assets path="alsoft.ini" rename="alsoft.conf" unless="windows" />
</section>
<!-- [ Libraries ] -->
<haxelib name="flixel" />
<haxelib name="flixel-addons" />
<haxelib name="flixel-ui" />
<haxelib name="funkin.vis" />
<haxelib name="grig.audio" />
<haxelib name="hscript" if="SIMPLE_SCRIPT" />
<haxelib name="polymod" if="FUTURE_POLYMOD" />
<haxelib name="hxcpp-debug-server" if="desktop debug" />
<!-- [ Defines ] -->
<haxedef name="FLX_RECORD" />
<haxedef name="FLX_NO_DEBUG" unless="debug" />
<haxedef name="NAPE_RELEASE_BUILD" unless="debug" />
<haxedef name="HXCPP_CHECK_POINTER" if="release" />
<haxedef name="HXCPP_STACK_LINE" if="release" />
<haxedef name="HXCPP_STACK_TRACE" if="release" />
<haxedef name="HXCPP_GC_BIG_BLOCKS" />
<haxedef name="hscriptPos" />
<haxedef name="analyzer-optimize" />
<haxedef name="no-deprecation-warnings" />
<haxedef name="message.reporting" value="pretty" />
<!-- [ Polymod Defines ] -->
<section if="polymod">
<haxedef name="POLYMOD_DEBUG" value="true" if="debug" />
<haxedef name="POLYMOD_SCRIPT_EXT" value=".hxs" />
</section>
<!-- [ Flags ] -->
<haxeflag name="-dce" value="no" />
<haxeflag name="--macro" value="allowPackage('flash')" />
<haxeflag name="--macro" value="include('my.pack')" />
<haxeflag name="--macro" value="include('flixel', true, ['flixel.addons.editors.spine.*', 'flixel.addons.nape.*', 'flixel.system.macros.*'])" />
<!-- [ Icon ] -->
<icon path="icon.png" />
<!-- [ Miscellaneous ] -->
<target id="haxe" tool="linker" if="linux">
<lib name="/usr/lib64/libX11.so" if="HXCPP_M64" /> <!-- linux support -->
</target>
<target id="haxe" tool="linker" if="macos">
<lib name="/lib64/libX11.a" if="HXCPP_M64" /> <!-- mac support -->
</target>
</project>