forked from cwhitney/PretzelGui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cinderblock.xml
40 lines (34 loc) · 1023 Bytes
/
cinderblock.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
<?xml version="1.0" encoding="UTF-8" ?>
<cinder>
<block
name="PretzelGUI"
id="com.sharkbox.pretzel"
author="Charlie Whitney"
summary="A GUI built from the ground up for Cinder 0.9.x"
git="https://github.com/cwhitney/PretzelGui"
>
<supports os="macosx" />
<supports os="msw" />
<headerPattern>src/pretzel/*.h</headerPattern>
<headerPattern>src/modules/*.h</headerPattern>
<headerPattern>src/components/*.h</headerPattern>
<sourcePattern>src/components/*.cpp</sourcePattern>
<sourcePattern>src/modules/*.cpp</sourcePattern>
<platform os="macosx">
<source compileAs="mm">src/pretzel/PretzelGlobal.cpp</source>
<source>src/pretzel/PretzelGui.cpp</source>
</platform>
<platform os="msw">
<sourcePattern>src/pretzel/*.cpp</sourcePattern>
</platform>
<includePath>src</includePath>
<resource
name="PRETZEL_GUI_SKIN"
type="IMAGE"
>resources/default_skin.png</resource>
<resource
name="PRETZEL_HSL_BAR"
type="IMAGE"
>resources/hslBar.png</resource>
</block>
</cinder>