File tree Expand file tree Collapse file tree 2 files changed +43
-1
lines changed
Expand file tree Collapse file tree 2 files changed +43
-1
lines changed Original file line number Diff line number Diff line change 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 :
Original file line number Diff line number Diff line change @@ -39,7 +39,12 @@ To build NeuralRack only as Clap plugin run
3939make 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
4449make
4550```
You can’t perform that action at this time.
0 commit comments