-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
27 lines (23 loc) · 880 Bytes
/
plugin.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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="com.keplero.phonegap.phonegap-libpd"
version="0.1.0">
<name>libPd</name>
<description>Interface to libPd, the Pure Data audio engine</description>
<author>Ålessandro Saccoia</author>
<keywords>audio,puredata</keywords>
<license>MIT License</license>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="libPd">
<param name="ios-package" value="libPd" />
</feature>
</config-file>
<js-module src="www/libPd.js" name="libPd">
<clobbers target="libPd" />
</js-module>
<header-file src="src/ios/libPd.h" />
<source-file src="src/ios/libPd.mm" />
</platform>
</plugin>