This repository was archived by the owner on Aug 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathBuild.xml
More file actions
71 lines (61 loc) · 3.44 KB
/
Copy pathBuild.xml
File metadata and controls
71 lines (61 loc) · 3.44 KB
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
<xml>
<section if="windows">
<files id="haxe">
<compilerflag value="-I${haxelib:hxsfml}/../SFML/include" />
<compilerflag value="-I${haxelib:hxsfml}/../cpp" />
<compilerflag value="-DUNICODE" />
<compilerflag value="-D_UNICODE" />
<compilerflag value="-DSFML_STATIC" if="static" />
<flag value="-debug" if="debug" />
</files>
<target id="haxe" tool="linker" toolid="exe">
<!-- <flag value="/VERBOSE" /> --> <!-- Uncomment this line out if you want more detailed linking when building. -->
<section unless="debug || static">
<lib name="${haxelib:hxsfml}/../lib/sfml-audio.lib" />
<lib name="${haxelib:hxsfml}/../lib/sfml-graphics.lib" />
<lib name="${haxelib:hxsfml}/../lib/sfml-main.lib" />
<lib name="${haxelib:hxsfml}/../lib/sfml-network.lib" />
<lib name="${haxelib:hxsfml}/../lib/sfml-system.lib" />
<lib name="${haxelib:hxsfml}/../lib/sfml-window.lib" />
</section>
<section if="debug" unless="static">
<lib name="${haxelib:hxsfml}/../lib/sfml-audio-d.lib" />
<lib name="${haxelib:hxsfml}/../lib/sfml-graphics-d.lib" />
<lib name="${haxelib:hxsfml}/../lib/sfml-main-d.lib" />
<lib name="${haxelib:hxsfml}/../lib/sfml-network-d.lib" />
<lib name="${haxelib:hxsfml}/../lib/sfml-system-d.lib" />
<lib name="${haxelib:hxsfml}/../lib/sfml-window-d.lib" />
</section>
<section if="static" unless="debug">
<lib name="${haxelib:hxsfml}/../lib/sfml-audio-s.lib" />
<lib name="${haxelib:hxsfml}/../lib/sfml-graphics-s.lib" />
<lib name="${haxelib:hxsfml}/../lib/sfml-network-s.lib" />
<lib name="${haxelib:hxsfml}/../lib/sfml-system-s.lib" />
<lib name="${haxelib:hxsfml}/../lib/sfml-window-s.lib" />
</section>
<section if="static || debug">
<lib name="${haxelib:hxsfml}/../lib/sfml-audio-s-d.lib" />
<lib name="${haxelib:hxsfml}/../lib/sfml-graphics-s-d.lib" />
<lib name="${haxelib:hxsfml}/../lib/sfml-network-s-d.lib" />
<lib name="${haxelib:hxsfml}/../lib/sfml-system-s-d.lib" />
<lib name="${haxelib:hxsfml}/../lib/sfml-window-s-d.lib" />
</section>
<section if="static">
<flag value="/NODEFAULTLIB:LIBCMT" />
<flag value="/NODEFAULTLIB:LIBCPMT" />
<lib name="${haxelib:hxsfml}/../lib/freetype.lib" />
<lib name="${haxelib:hxsfml}/../lib/jpeg.lib" />
<lib name="${haxelib:hxsfml}/../lib/flac.lib" />
<lib name="${haxelib:hxsfml}/../lib/vorbisenc.lib" />
<lib name="${haxelib:hxsfml}/../lib/vorbisfile.lib" />
<lib name="${haxelib:hxsfml}/../lib/vorbis.lib" />
<lib name="${haxelib:hxsfml}/../lib/ogg.lib" />
<lib name="${haxelib:hxsfml}/../lib/openal32.lib" />
<lib name="opengl32.lib" />
<lib name="winmm.lib" />
<lib name="gdi32.lib" />
<lib name="ws2_32.lib" />
</section>
</target>
</section>
</xml>