-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathidf_component.yml
More file actions
48 lines (45 loc) · 1.49 KB
/
Copy pathidf_component.yml
File metadata and controls
48 lines (45 loc) · 1.49 KB
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
42
43
44
45
46
47
48
## ESP-IDF Component Manager manifest.
##
## Lets ESP-IDF projects pull midi2 from the ESP Component Registry
## without vendoring src/dist into the consumer tree:
##
## # in your_app/main/idf_component.yml
## dependencies:
## sauloverissimo/midi2: ">=0.7.0"
##
## The Component Manager fetches midi2 into managed_components/, and
## ESP-IDF picks it up as a component because the top-level CMakeLists
## detects ESP_PLATFORM and calls idf_component_register at the top of
## the file.
description: "Portable MIDI 2.0 infrastructure, C99 with zero dependencies and zero allocation."
version: "0.7.0"
url: "https://github.com/sauloverissimo/midi2"
documentation: "https://github.com/sauloverissimo/midi2#readme"
issues: "https://github.com/sauloverissimo/midi2/issues"
license: "MIT"
maintainers:
- "Saulo Verissimo <sauloverissimo@gmail.com>"
tags:
- midi
- midi2
- ump
- capability-inquiry
- property-exchange
dependencies:
idf: ">=4.0"
## Exclude non-ESP files from the published tarball. The zephyr/ directory
## is a west module manifest irrelevant to ESP-IDF; example board photos and
## compiled test binaries are not part of the distributed library.
files:
exclude:
- "zephyr/**/*"
- "examples/**/board/**/*"
- "examples/**/monitor/**/*"
- "test/test_midi2_msg"
- "test/test_midi2_proc"
- "test/test_midi2_ci"
- "test/test_midi2_ci_msg"
- "test/test_midi2_ci_dispatch"
- "test/test_midi2_conv"
- "test/test_midi2_dispatch"
- "test/test_midi2_amalgam"