-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcinderblock.xml
30 lines (29 loc) · 960 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
<?xml version="1.0" encoding="UTF-8" ?>
<cinder>
<block
name="Cinder-HTTP(S)"
id="org.libcinder.HTTPS"
author="Cinder Project, Ryan Bartley"
license="BSD, Boost"
summary="Implements http and https protocols with openssl as the security."
core="true"
>
<supports os="macosx" />
<supports os="msw" />
<headerPattern>src/cinder/http/*.hpp</headerPattern>
<includePath>src</includePath>
<includePath system="true">lib/include</includePath>
<platform os="macosx">
<staticLibrary>lib/osx/libcrypto.a</staticLibrary>
<staticLibrary>lib/osx/libssl.a</staticLibrary>
</platform>
<platform os="msw" config="debug">
<staticLibrary>lib/msw/Debug/libeay32MT.lib</staticLibrary>
<staticLibrary>lib/msw/Debug/ssleay32MT.lib</staticLibrary>
</platform>
<platform os="msw" config="release">
<staticLibrary>lib/msw/Release/libeay32MT.lib</staticLibrary>
<staticLibrary>lib/msw/Release/ssleay32MT.lib</staticLibrary>
</platform>
</block>
</cinder>