Skip to content
New issue

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

Add 'How to load .clap plugin' to README.md #39

Open
NatureIsFrequency opened this issue Feb 6, 2024 · 0 comments
Open

Add 'How to load .clap plugin' to README.md #39

NatureIsFrequency opened this issue Feb 6, 2024 · 0 comments

Comments

@NatureIsFrequency
Copy link
Contributor

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

-p <PATH_TO_PLUGIN.clap>

Vscode launch.json example

{
    "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"
        }
    ]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant