Open NatureIsFrequency opened 9 months ago
Took me a moment to see how to load a .clap plugin. Could something like the following be added to the README.md for future users, cheers
Replace with your plugin path
-p <PATH_TO_PLUGIN.clap>
{ "version": "0.2.0", "configurations": [ { "name": "(lldb) Launch", "type": "cppdbg", "request": "launch", "program": "${workspaceFolder}/builds/ninja-system/host/Debug/clap-host", "args": [], "stopAtEntry": false, "cwd": "${fileDirname}", "environment": [{ "name": "CLAP_HOST_FORCE_PLUGIN", "value": "<PATH_TO_PLUGIN.clap>" }], "externalConsole": false, "MIMode": "lldb" } ] }
Took me a moment to see how to load a .clap plugin. Could something like the following be added to the README.md for future users, cheers
How to load .clap plugin
Replace with your plugin path
Command line example
Vscode launch.json example