free-audio / clap-wrapper

Wrappers for using CLAP in other plugin environments
MIT License
107 stars 17 forks source link

Deal with user specified INSTRUMENT_TYPE #275

Closed baconpaul closed 1 month ago

baconpaul commented 1 month ago

We switch on INSTRUMENT_TYPE to set the internall wrapper handler. We actually only use this in one spot internally but we were failing to make a buildable wrapper if you set the type to something not in our list-of-three. So for now, warn and default out to internal instrument for the other types (which is probably the right behavior for aumf, which is what raised this issue in #271)

defiantnerd commented 1 month ago

yeah, thumbs up. it is build time, so that is a valid choice.

djowel commented 1 month ago

Thank you!