-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcinderblock.xml
32 lines (32 loc) · 1.12 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
<?xml version="1.0" encoding="UTF-8" ?>
<cinder>
<block
name="Cinder-VLC"
id="org.andreamelle.cindervlc"
author="Andrea Melle"
license="BSD"
summary="Wrapper of VLC libraries to play video on Windows with Cinder"
git="git://github.com/AndreaMelle/Cinder-VLC"
version="0.1.0"
libraryUrl="http://www.videolan.org/vlc/libvlc.html"
>
<header>include/CVLCMoviePlayer.h</header>
<header>include/CVLCCommon.h</header>
<includePath>include/vlc</includePath>
<includePath>include</includePath>
<platform compiler="vc2013">
<platform config="debug">
<staticLibrary>lib/vc2013/x86/libvlc.lib</staticLibrary>
<staticLibrary>lib/vc2013/x86/libvlccore.lib</staticLibrary>
<staticLibrary>lib/vc2013/x64/libvlc.lib</staticLibrary>
<staticLibrary>lib/vc2013/x64/libvlccore.lib</staticLibrary>
</platform>
<platform config="release">
<staticLibrary>lib/vc2013/x86/libvlc.lib</staticLibrary>
<staticLibrary>lib/vc2013/x86/libvlccore.lib</staticLibrary>
<staticLibrary>lib/vc2013/x64/libvlc.lib</staticLibrary>
<staticLibrary>lib/vc2013/x64/libvlccore.lib</staticLibrary>
</platform>
</platform>
</block>
</cinder>