-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.xml
65 lines (48 loc) · 2.16 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
<?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 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"/>
<haxedef name="HXCPP_STACK_LINE" />
<haxedef name="HXCPP_STACK_TRACE"/>
<haxedef name="HXCPP_CHECK_POINTER"/>
</project>