-
Notifications
You must be signed in to change notification settings - Fork 1
/
Chip-8-Emu.hxproj
60 lines (60 loc) · 1.95 KB
/
Chip-8-Emu.hxproj
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
<?xml version="1.0" encoding="utf-8"?>
<project version="2">
<!-- Output SWF options -->
<output>
<movie outputType="Application" />
<movie input="" />
<movie path="application.xml" />
<movie fps="60" />
<movie width="800" />
<movie height="480" />
<movie version="3" />
<movie minorVersion="0" />
<movie platform="NME" />
<movie background="000000" />
<movie preferredSDK=";3;" />
</output>
<!-- Other classes to be compiled into your SWF -->
<classpaths>
<class path="src" />
<class path="bin\windows\cpp\haxe" />
</classpaths>
<!-- Build options -->
<build>
<option directives="tools=1.1.6
openfl=1.1
display
windows
desktop
no-compilation" />
<option flashStrict="False" />
<option noInlineOnDebug="False" />
<option mainClass="ApplicationMain" />
<option enabledebug="True" />
<option additional="--no-output
--macro allowPackage("flash")
--macro keep("com.darkyork.chip8.Main")" />
</build>
<!-- haxelib libraries -->
<haxelib>
<library name="openfl" />
<library name="actuate" />
</haxelib>
<!-- Class files to compile (other referenced classes will automatically be included) -->
<compileTargets>
<compile path="src\com\darkyork\chip8\Main.hx" />
</compileTargets>
<!-- Assets to embed into the output SWF -->
<library>
<!-- example: <asset path="..." id="..." update="..." glyphs="..." mode="..." place="..." sharepoint="..." /> -->
</library>
<!-- Paths to exclude from the Project Explorer tree -->
<hiddenPaths>
<hidden path="obj" />
</hiddenPaths>
<!-- Executed before build -->
<preBuildCommand />
<!-- Executed after build -->
<postBuildCommand alwaysRun="False" />
<!-- Other project options -->
<options>
<option showHiddenPaths="False" />
<option testMovie="Custom" />
<option testMovieCommand="" />
</options>
<!-- Plugin storage -->
<storage />
</project>