-
Notifications
You must be signed in to change notification settings - Fork 2
/
cinderblock.xml
45 lines (36 loc) · 1.44 KB
/
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
41
42
43
44
45
<?xml version = "1.0" encoding="UTF-8" ?>
<cinder>
<block
name = "ciXtract"
id = "uk.nocte.cixtract"
author = "Andrea Cuius"
summary = "LibXtract Cinder block"
git = "ssh://[email protected]/q_bit/cixtract.git"
library = "https://github.com/jamiebullock/LibXtract/"
>
<!-- <supports os = "msw" /> -->
<!-- <supports os= "macosx" /> -->
<sourcePattern>src/*.cpp</sourcePattern>
<headerPattern>src/*.h</headerPattern>
<headerPattern>src/xtract/*.h</headerPattern>
<includePath>src</includePath>
<includePath>src/xtract</includePath>
<platform os="macosx">
<platform config="Debug">
<staticLibrary>lib/macosx/LibXtract_d.a</staticLibrary>
</platform>
<platform config="Release">
<staticLibrary>lib/macosx/LibXtract.a</staticLibrary>
</platform>
</platform>
<platform os="msw">
<platform config="Debug">
<staticLibrary>lib/msw/LibXtract_d.lib</staticLibrary>
</platform>
<platform config="Release">
<staticLibrary>lib/msw/LibXtract.lib</staticLibrary>
</platform>
</platform>
</block>
<template>templates/ciXtractBasic/template.xml</template>
</cinder>