This repository was archived by the owner on Dec 13, 2025. It is now read-only.
forked from JoaTH-Team/Rhythmo-SC
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProject.xml
More file actions
125 lines (92 loc) · 3.63 KB
/
Project.xml
File metadata and controls
125 lines (92 loc) · 3.63 KB
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<?xml version="1.0" encoding="utf-8"?>
<project>
<!-- [ Application Settings ] -->
<app title="Rhythmo" file="Rhythmo" main="Main" version="1.1.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" />
<!-- [ Errors ] -->
<section if="html5">
<error value="Sorry, but HTML5 isn't supported!" />
</section>
<!-- [ Custom Defines ] -->
<define name="FUTURE_POLYMOD" if="desktop || mobile" />
<define name="UPDATE_CHECK" if="desktop release" />
<define name="CRASH_HANDLER" 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" />
<!-- [ Game Assets & Etc. ] -->
<assets path="assets/achievements" />
<assets path="assets/data" />
<assets path="assets/fonts" />
<assets path="assets/images" />
<assets path="assets/languages" />
<assets path="assets/music" />
<assets path="assets/scripts" />
<assets path="assets/shaders" />
<assets path="assets/songs" />
<assets path="assets/sounds" />
<assets path="assets/states" />
<assets path="assets/substates" />
<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="tjson" />
<haxelib name="hscript" />
<haxelib name="rulescript" />
<haxelib name="hxluajit-wrapper" />
<haxelib name="scriptless-polymod" if="FUTURE_POLYMOD" />
<haxelib name="hxcpp-debug-server" if="desktop debug" />
<haxelib name="hxgamemode" if="linux" />
<haxelib name="hx_arabic_shaper" />
<haxelib name="extension-androidtools" />
<!-- [ Defines ] -->
<haxedef name="FLX_RECORD" />
<haxedef name="FLX_NO_DEBUG" unless="debug" />
<haxedef name="FLX_NO_FOCUS_LOST_SCREEN" />
<haxedef name="FLX_NO_SOUND_TRAY" />
<haxedef name="FLX_NO_HEALTH" />
<section if="CRASH_HANDLER">
<haxedef name="HXCPP_CHECK_POINTER" if="release" />
<haxedef name="HXCPP_STACK_LINE" if="release" />
<haxedef name="HXCPP_STACK_TRACE" if="release" />
</section>
<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="include('rhythmo')" />
<haxeflag name="--macro"
value="include('flixel', true, ['flixel.addons.editors.spine.*', 'flixel.addons.nape.*', 'flixel.system.macros.*'])" />
<haxeflag name="--macro" value="nullSafety('rhythmo.util')" />
<!-- [ Icon ] -->
<assets path="setup/icon.png" rename="icon.png" if="linux || mac" />
<icon path="setup/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>