WrapEarnPass created an issue (geany/geany#4624)
meson setup -Dplugins=false still tries to build plugins.
```cdata.set('HAVE_PLUGINS', get_option('plugins'))``` sets a flag for plugins,
but down in the subdir section where sub-projects are pulled in, ```
subdir('plugins')``` is not gated, so it builds everything in
plugins/meson.build:plugins[]
Suggested fix, gate subdir from geany/meson.build.
```
if get_option('plugins')
subdir('plugins')
endif
```
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/4624
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany/issues/[email protected]>