Changeset dd60122984dc6372097d75f3463a0072b2ca0058
- Timestamp:
- 06/05/09 22:44:58 (3 years ago)
- Author:
- Nedko Arnaudov <nedko@…>
- Children:
- 02a3a7de482c51844b83c175ba95c5e5c200a6b8
- Parents:
- 829dd674e2a53eef6035afac4a6f4f5f50efaa12
- git-committer:
- Nedko Arnaudov <nedko@arnaudov.name> / 2009-06-05T22:44:58Z+0300
- Message:
-
Basic external UI
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
r3969583
|
rdd60122
|
|
| 6 | 6 | @prefix ue: <http://lv2plug.in/ns/extensions/units#> . |
| 7 | 7 | @prefix epp: <http://lv2plug.in/ns/dev/extportinfo#> . |
| | 8 | @prefix uiext: <http://lv2plug.in/ns/extensions/ui#> . |
| | 9 | |
| | 10 | <http://nedko.aranaudov.org/soft/filter/1/gui> |
| | 11 | a uiext:external; |
| | 12 | uiext:binary <filter.so>. |
| 8 | 13 | |
| 9 | 14 | <http://nedko.aranaudov.org/soft/filter/1> |
| … |
… |
|
| 18 | 23 | doap:license <http://usefulinc.com/doap/licenses/gpl>; |
| 19 | 24 | |
| | 25 | uiext:ui <http://nedko.aranaudov.org/soft/filter/1/gui>; |
| | 26 | |
| 20 | 27 | lv2:port [ |
| 21 | 28 | a lv2:InputPort, lv2:AudioPort; |
-
|
r829dd67
|
rdd60122
|
|
| 24 | 24 | |
| 25 | 25 | conf.check_pkg('lv2core', mandatory=True) |
| | 26 | conf.check_pkg('liblo', mandatory=True) |
| 26 | 27 | |
| 27 | 28 | def build(bld): |
| 28 | 29 | filter = bld.create_obj('lv2plugin', type='cc') |
| 29 | | filter.uselib = 'LV2CORE' |
| | 30 | filter.uselib = 'LV2CORE LIBLO' |
| 30 | 31 | filter.target = 'filter' |
| 31 | | filter.ttl = ['filter.ttl', 'manifest.ttl'] |
| 32 | | filter.source = ['filter.c', 'lv2filter.c', 'lv2plugin.c', 'log.c'] |
| | 32 | filter.ttl = ['filter.ttl', 'manifest.ttl', 'ui'] |
| | 33 | filter.source = ['filter.c', 'lv2filter.c', 'lv2plugin.c', 'log.c', 'lv2_ui.c'] |