Recognizing rtmidi creators contributions
This commit is contained in:
parent
57ac46cf9b
commit
32f2183136
@ -92,3 +92,6 @@ Skopiuj katalog [etc/editor/musique-vscode](etc/editor/musique-vscode) do folder
|
|||||||
|
|
||||||
- Creator of [tl::expected](https://github.com/TartanLlama/expected) - [Sy Brand](https://sybrand.ink/)
|
- Creator of [tl::expected](https://github.com/TartanLlama/expected) - [Sy Brand](https://sybrand.ink/)
|
||||||
- Creator of [bestline](https://github.com/jart/bestline) - [Justine Tunney](https://justinetunney.com/)
|
- Creator of [bestline](https://github.com/jart/bestline) - [Justine Tunney](https://justinetunney.com/)
|
||||||
|
- Creator of [rtmidi](https://github.com/thestk/rtmidi/) - [Gary P. Scavone](http://www.music.mcgill.ca/~gary/)
|
||||||
|
|
||||||
|
and all contributors that created libraries above.
|
||||||
|
@ -76,6 +76,7 @@ static T pop(std::span<char const*> &span)
|
|||||||
"Thanks to:\n"
|
"Thanks to:\n"
|
||||||
" Sy Brand, https://sybrand.ink/, creator of tl::expected https://github.com/TartanLlama/expected\n"
|
" Sy Brand, https://sybrand.ink/, creator of tl::expected https://github.com/TartanLlama/expected\n"
|
||||||
" Justine Tunney, https://justinetunney.com, creator of bestline readline library https://github.com/jart/bestline\n"
|
" Justine Tunney, https://justinetunney.com, creator of bestline readline library https://github.com/jart/bestline\n"
|
||||||
|
" Gary P. Scavone, http://www.music.mcgill.ca/~gary/, creator of rtmidi https://github.com/thestk/rtmidi\n"
|
||||||
;
|
;
|
||||||
std::exit(1);
|
std::exit(1);
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,12 @@
|
|||||||
#include <musique/midi/midi.hh>
|
#include <musique/midi/midi.hh>
|
||||||
#include <musique/errors.hh>
|
#include <musique/errors.hh>
|
||||||
|
|
||||||
|
// Copyright notice for RtMidi library
|
||||||
|
__asm__(R"license(.ident "\
|
||||||
|
RtMidi: realtime MIDI i/o C++ classes\
|
||||||
|
Copyright (c) 2003-2021 Gary P. Scavone"
|
||||||
|
)license");
|
||||||
|
|
||||||
void midi::Rt_Midi::list_ports(std::ostream &out) const
|
void midi::Rt_Midi::list_ports(std::ostream &out) const
|
||||||
try {
|
try {
|
||||||
RtMidiIn input;
|
RtMidiIn input;
|
||||||
|
Loading…
Reference in New Issue
Block a user