-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.xml
92 lines (75 loc) · 3.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
91
92
<?xml version="1.0" encoding="utf-8"?>
<project>
<!-- Base properties defined in GenesisApplication.xml -->
<include path="Genesis/GenesisApplication.xml"/>
<!-- Override properties, add new ones below -->
<meta version="0.8.22"/>
<meta unless="debug" title="Super.Human.Installer"/>
<meta title="Super.Human.Installer Development" if="debug"/>
<section unless="packageid">
<meta unless="debug" package="net.prominic.genesis.superhumaninstaller"/>
<meta package="net.prominic.genesis.superhumaninstallerdev" if="debug"/>
</section>
<section if="packageid">
<meta package="${packageid}" if="packageid"/>
</section>
<set value="SuperHumanInstaller" unless="debug" name="appfile"/>
<set value="SuperHumanInstallerDev" name="appfile" if="debug"/>
<app path="${exportdir}" main="SuperHumanInstaller" file="${appfile}"/>
<icon path="Assets/icon.png"/>
<source path="Source"/>
<source path="Scripts"/>
<source path="Macros" />
<assets rename="assets/images" path="Assets/images" include="*"/>
<assets path="Assets/images">
<image path="/common/start.png" id="ICON_START" />
<image path="/common/stop.png" id="ICON_STOP"/>
<image path="/common/checkbox_large.png" id="ICON_CHECKBOX_LARGE"/>
<image path="/common/checkbox_large_selected.png" id="ICON_CHECKBOX_LARGE_SELECTED"/>
<image path="/common/suspend.png" id="ICON_SUSPEND"/>
<image path="/common/upload.png" id="ICON_UPLOAD"/>
<image path="/common/refresh.png" id="ICON_REFRESH"/>
<image path="/common/destroy.png" id="ICON_DESTROY"/>
<image path="/common/output.png" id="ICON_OUTPUT"/>
<image path="/common/web.png" id="ICON_WEB"/>
<image path="/common/console.png" id="ICON_CONSOLE"/>
<image path="/common/folder.png" id="ICON_FOLDER"/>
<image path="/common/delete.png" id="ICON_DELETE"/>
<image path="/common/filezilla.png" id="ICON_FILEZILLA"/>
<image path="/common/settings.png" id="ICON_SETTINGS"/>
<image path="/common/output_error.png" id="ICON_OUTPUT_ERROR"/>
<image path="/common/output_new.png" id="ICON_OUTPUT_NEW"/>
<image path="/common/settings_warning.png" id="ICON_SETTINGS_WARNING"/>
<image path="/common/clear.png" id="ICON_CLEAR"/>
<image path="/common/close.png" id="ICON_CLOSE"/>
<image path="/common/copy.png" id="ICON_COPY"/>
</assets>
<assets rename="assets/text" path="Assets/text" include="*"/>
<assets rename="assets/provisioners" path="Assets/provisioners" include="*"/>
<assets rename="assets/bin" path="Assets/bin/mac" include="*" if="mac"/>
<assets rename="assets/bin" path="Assets/bin/windows" include="*" if="windows"/>
<assets rename="assets/bin" path="Assets/bin/linux" include="*" if="linux"/>
<template path="Templates"/>
<section if="neko">
<app path="${exportdir}/neko-macos" if="mac"/>
<app path="${exportdir}/neko-windows" if="windows"/>
<app path="${exportdir}/neko-linux" if="linux"/>
</section>
<section if="hl">
<error value="Super.Human.Installer is not supported on the selected platform!"/>
</section>
<section unless="windows || mac || linux || neko">
<error value="Super.Human.Installer is not supported on the selected platform!"/>
</section>
<!-- For dox -->
<haxeflag value="include('prominic')" name="--macro"/>
<haxeflag value="include('genesis.application')" name="--macro"/>
<haxeflag value="include('superhuman')" name="--macro"/>
<haxeflag value="include('feathers')" name="--macro"/>
<haxeflag value="addGlobalMetadata('feathers', '@:rtti', true, true, false)" name="--macro"/>
<haxeflag value="addGlobalMetadata('openfl', '@:rtti', true, true, false)" name="--macro"/>
<haxeflag value="addGlobalMetadata('lime', '@:rtti', true, true, false)" name="--macro"/>
<haxedef name="HXCPP_STACK_LINE" />
<haxedef name="HXCPP_STACK_TRACE"/>
<haxedef name="HXCPP_CHECK_POINTER"/>
</project>