Better document the use-winedbg option

This commit is contained in:
Robbert van der Helm
2020-03-16 13:45:00 +01:00
parent 3b91e23fda
commit 23ad05aba1
2 changed files with 7 additions and 2 deletions
+1 -1
View File
@@ -131,7 +131,7 @@ window managers will require some slight modifications in
`src/plugin/host-bridge.cpp`. To enable this, simply run:
```shell
meson configure build -Duse-winedbg=true
meson configure build --buildtype=debug -Duse-winedbg=true
```
## Rationale
+6 -1
View File
@@ -1 +1,6 @@
option('use-winedbg', type : 'boolean', value : false)
option(
'use-winedbg',
type : 'boolean',
value : false,
description: 'Whether to run the Wien VST host with GDB attached. Might not always be reliable.'
)