Skip to content

Commit e0b2700

Browse files
committed
add vst2 to README
1 parent cf21cd1 commit e0b2700

File tree

2 files changed

+43
-1
lines changed

2 files changed

+43
-1
lines changed

.github/workflows/build.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,25 @@ jobs:
9898
lto: false
9999
pawpaw: true
100100

101+
linux-vst2:
102+
strategy:
103+
matrix:
104+
target: [linux-x86_64]
105+
runs-on: ubuntu-22.04
106+
permissions:
107+
contents: write
108+
steps:
109+
- uses: actions/checkout@v4
110+
with:
111+
submodules: recursive
112+
- uses: ./.github/actions
113+
with:
114+
target: ${{ matrix.target }}
115+
postfix: -vst2
116+
extraargs: vst2
117+
lto: false
118+
pawpaw: true
119+
101120
windows-optimised:
102121
strategy:
103122
matrix:
@@ -169,6 +188,24 @@ jobs:
169188
extraargs: clap
170189
pawpaw: true
171190

191+
windows-vst2:
192+
strategy:
193+
matrix:
194+
target: [win64]
195+
runs-on: ubuntu-latest
196+
permissions:
197+
contents: write
198+
steps:
199+
- uses: actions/checkout@v4
200+
with:
201+
submodules: recursive
202+
- uses: ./.github/actions
203+
with:
204+
target: ${{ matrix.target }}
205+
postfix: -vst2
206+
extraargs: vst2
207+
pawpaw: true
208+
172209
source:
173210
runs-on: ubuntu-22.04
174211
permissions:

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,12 @@ To build NeuralRack only as Clap plugin run
3939
make clap
4040
```
4141

42-
To build NeuralRack with all favours (currently as LV2 and Clap plugin and as standalone application) run
42+
To build NeuralRack only as vst2 plugin run
43+
```shell
44+
make vst2
45+
```
46+
47+
To build NeuralRack with all favours (currently as LV2, Clap and vst2 plugin and as standalone application) run
4348
```shell
4449
make
4550
```

0 commit comments

Comments
 (0)