We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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 <PATH_TO_PLUGIN.clap> 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" } ] }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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 <PATH_TO_PLUGIN.clap> with your plugin path
Command line example
Vscode launch.json example
The text was updated successfully, but these errors were encountered: