This repository has been archived by the owner on Nov 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathProject.xml
61 lines (45 loc) · 2.29 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
<?xml version="1.0" encoding="utf-8"?>
<project>
<!-- _________________________ Application Settings _________________________ -->
<app packageName="com.theleername.maniaconverter" main="Main" company="ManiaConverter" preloader="flixel.system.FlxPreloader"/>
<app title="Mania Converter" package="com.theleername.maniaconverter" file="ManiaConverter"/>
<set name="APP_ID" value="0x0100f6c013bbc000" />
<set name="SWF_VERSION" value="11.8" />
<!-- ____________________________ Window Settings ___________________________ -->
<window width="510" height="460" fps="" background="#000000" hardware="true" vsync="false" />
<window if="html5" resizable="true" />
<window if="desktop" orientation="landscape" fullscreen="false" resizable="false" />
<!-- _____________________________ Path Settings ____________________________ -->
<set name="BUILD_DIR" value="export/debug" if="debug" />
<set name="BUILD_DIR" value="export/release" unless="debug" />
<set name="BUILD_DIR" value="export/32bit" if="32bits" />
<classpath name="source"/>
<haxeflag name="--macro" if="windows" value="macros.MoveAssets.moveFolder('assets/menu')"/>
<section if="desktop">
<assets path="assets/fonts" embed='true'/>
<assets path="assets/images" embed='true'/>
<assets path="assets/sounds" embed='true'/>
</section>
<section unless="desktop">
<assets path="assets" embed="true"/>
</section>
<haxeflag name="--macro" value="macros.CompileTime.addCompileTime('Main', 'compileTime')"/>
<!-- _______________________________ Libraries ______________________________ -->
<haxedev set="webgl" />
<haxelib name="flixel" version="5.3.1" />
<haxelib name="flixel-addons" version="3.1.1" />
<haxelib name="flixel-ui" version="2.5.0" />
<haxelib name="hxcpp" version="4.3.2" />
<!-- ______________________________ Haxedefines _____________________________ -->
<haxedef name="FLX_NO_SOUND_TRAY" />
<!-- <haxedef name="FLX_NO_SOUND_SYSTEM" /> -->
<haxedef name="FLX_NO_FOCUS_LOST_SCREEN" />
<haxedef name="FLX_NO_DEBUG" />
<haxedef name="NAPE_RELEASE_BUILD" />
<!-- _________________________________ Custom _______________________________ -->
<!-- icons -->
<icon path="art/icon16.png" size='16'/>
<icon path="art/icon32.png" size='32'/>
<icon path="art/icon64.png" size='64'/>
<icon path="art/iconOG.png" />
</project>