-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcinderblock.xml
41 lines (39 loc) · 1.28 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
<?xml version="1.0" encoding="UTF-8" ?>
<cinder>
<block
name="Midi2"
id="mb.cinder.midi2"
author="Martin Blasko"
license="GPL"
summary="Midi block for Cinder developed by Bruce Lane, Martin Blasko. Original code by Hecqspec. Midi parsing taken from ofxMidi by Theo Watson & Dan Wilcox"
version="1.0.20200531"
url="https://github.com/brucelane/Cinder-MIDI2"
git="https://github.com/brucelane/Cinder-MIDI2.git"
>
<supports os="msw" />
<supports os="macosx" />
<includePath>include</includePath>
<includePath>lib</includePath>
<includePath>src</includePath>
<header>include/MidiConstants.h</header>
<header>include/MidiExceptions.h</header>
<header>include/MidiHeaders.h</header>
<header>include/MidiHub.h</header>
<header>include/MidiIn.h</header>
<header>include/MidiMessage.h</header>
<header>include/MidiOut.h</header>
<header>lib/RtMidi.h</header>
<source>src/MidiHub.cpp</source>
<source>src/MidiIn.cpp</source>
<source>src/MidiMessage.cpp</source>
<source>src/MidiOut.cpp</source>
<source>lib/RtMidi.cpp</source>
<platform os="macosx">
<framework sdk="true">CoreMIDI.framework</framework>
</platform>
<platform os="msw">
<staticLibrary absolute="true">winmm.lib</staticLibrary>
</platform>
</block>
<template>templates/Basic MIDI/template.xml</template>
</cinder>