Browse Source

build instructions

master
parent
commit
f30d7c95c5
Signed by: alex
GPG Key ID: 022EAE42313D70F3
  1. 32
      README.md
  2. 2
      src/meson.build

32
README.md

@ -1,8 +1,34 @@ @@ -1,8 +1,34 @@
Passthrough GTK4
================
A passthrough plugin for testing GTK4 LV2 plugins.
A passthrough plugin for testing GTK4 plugin support in
LV2 hosts.
# License
# Dependencies
GNU AGPL version 3 or later
LV2 and GTK4
# Building & Installing
Configure
```
meson build
```
Build
```
ninja -C build
```
The following will install the LV2 bundle under
`/your/path/usr/lib/lv2/PassthroughGtk4.lv2`
```
DESTDIR=/your/path ninja -C build install
```
# Copying
Copyright © 2022 Alexandros Theodotou
Released under the GNU AGPL version 3 or later.
See the file [COPYING](COPYING) for details.

2
src/meson.build

@ -20,7 +20,7 @@ cdata.set ('PLUGIN_URI', pl_uri) @@ -20,7 +20,7 @@ cdata.set ('PLUGIN_URI', pl_uri)
cdata.set_quoted ('PLUGIN_URI_QUOTED', pl_uri)
cdata.set_quoted ('PLUGIN_UI_URI_QUOTED', pl_ui_uri)
plugin_lv2_dir = lv2dir / 'passthrough-gtk4.lv2'
plugin_lv2_dir = lv2dir / 'PassthroughGtk4.lv2'
config_h = configure_file (
output: 'passthrough-config.h',

Loading…
Cancel
Save