Alexandre Bique
Alexandre Bique
Hi, I've updated vcpkg and could build the plugins without issues. I hope it works for you. Alex
Try deleting the vcpkg executable, and try again.
I'm on latest macOS and xcode.
You should try to update your xcode to the latest version.
Ah, I don't have enough resources to setup many old macOS versions.
because of windows/cmake/ninja poor support for long path, Qt needs to be built almost at the root :/
Hi, You can't extend the struct size like that, it'll break the ABI. You have to extend this extension by making a complementary one. Cheers, Alex
This PR opens a few questions: - should we have a generic key/value object in clap that could be re-used by other extension, so you'd implement this only once -...
I looked again at this PR and I think that either it becomes simpler by using a C struct or we need a full property extension: - key (string) /...
Maybe there is another approach to this: ```C enum { CLAP_PLUGIN_LOCATION_TRACK_GROUP, CLAP_PLUGIN_LOCATION_TRACK, CLAP_PLUGIN_LOCATION_PARALLEL_DEVICE, CLAP_PLUGIN_LOCATION_NESTED_DEVICE_CHAIN, // ... }; struct clap_plugin_location_header { int kind; }; struct clap_plugin_location_track { struct clap_plugin_location_header hdr; const...