forked from BemboLikePizza/VsDave
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Project.xml
88 lines (66 loc) · 3.48 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
<?xml version="1.0" encoding="utf-8"?>
<project>
<!-- _________________________ Application Settings _________________________ -->
<app title="Friday Night Funkin' | VS. Dave and Bambi 3.0b" file="VsDave" packageName="dnbteam.daveandbambi" package="dnbteam.daveandbambi" main="Main" version="3.0.0" company="dnbteam"/>
<app preloader="flixel.system.FlxPreloader"/>
<set name="SWF_VERSION" value="11.8"/>
<!-- ____________________________ Window Settings ___________________________ -->
<!--These window settings apply to all targets-->
<window width="1280" height="720" fps="120" hardware="true" vsync="true" background="0x0000ffff"/>
<!--HTML5-->
<window if="html5" resizable="true"/>
<!--Desktop-->
<window if="desktop" orientation="landscape" fullscreen="false" resizable="true" vsync="false"/>
<!--macOS-->
<window if="mac" orientation="auto" fullscreen="false" resizable="true" vsync="false" allow-high-dpi="true" />
<!--Mobile-->
<window if="mobile" orientation="landscape" fullscreen="true" width="0" height="0" resizable="false"/>
<!-- _____________________________ Path Settings ____________________________ -->
<classpath name="source" />
<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="32bit" />
<assets path="assets/preload" rename="assets" exclude="*.ogg" if="web"/>
<assets path="assets/preload" rename="assets" exclude="*.mp3" unless="web"/>
<assets path="assets/preload/videos" rename="assets/videos" include="*.mp4" embed='false' />
<assets path="assets/songs" library="songs" exclude="*.ogg" if="web"/>
<assets path="assets/songs" library="songs" exclude="*.mp3" unless="web"/>
<assets path="assets/shared" library="shared" exclude="*.ogg" if="web"/>
<assets path="assets/shared" library="shared" exclude="*.mp3" unless="web"/>
<assets path='art/readme.txt' rename='PLEASE READ.txt' />
<assets path='art/icons' rename='icons' embed='true'/>
<assets path="CHANGELOG.md" rename='changelog.txt'/>
<assets path="assets/fonts" embed='true'/>
<define name="SHADERS_ENABLED" unless="mac"/>
<define name="PRELOAD_ALL" unless="web" />
<define name="NO_PRELOAD_ALL" unless="PRELOAD_ALL"/>
<section if="PRELOAD_ALL">
<library name="songs" preload="true" />
<library name="shared" preload="true" />
</section>
<section if="NO_PRELOAD_ALL">
<library name="songs" preload="false" />
<library name="shared" preload="false" />
</section>
<!-- _______________________________ Libraries ______________________________ -->
<haxelib name="flixel" />
<haxedev set='webgl' />
<haxelib name="flixel-addons" />
<haxelib name="hscript" />
<haxelib name="actuate" />
<haxelib name="flixel-ui" />
<haxelib name="hxCodec" if="desktop || android" />
<haxedef name="FLX_NO_FOCUS_LOST_SCREEN" />
<haxedef name="FLX_NO_DEBUG" unless="debug" />
<haxedef name="NAPE_RELEASE_BUILD" unless="debug" />
<!--Allow working memory greater than 1 Gig, therefore preventing the mod on slower hardware with less ram to lag-->
<haxedef name="HXCPP_GC_BIG_BLOCKS"/>
<setenv name="next"/>
<haxelib name="discord_rpc" if="desktop"/>
<!-- _________________________________ Custom _______________________________ -->
<icon path="art/icons/dave.png" />
<!-- ________________________ Import Linux Stuff _____________________________ -->
<target id="haxe" tool="linker" if="linux">
<lib name="/usr/lib64/libX11.so" if="HXCPP_M64" />
</target>
</project>