update readme and makefile for other plugin formats
This commit is contained in:
parent
6c462d0895
commit
6f2cd274a5
11
README.md
11
README.md
@ -20,7 +20,16 @@ and build alphaOsc:
|
||||
|
||||
make
|
||||
|
||||
This will compile the jack standalone version and LV2 version. It ought to be possible to also compile VST/VST3 and AU versions but these have not yet been tested.
|
||||
This will compile the jack standalone version, and LV2, VST2, and VST3 versions. It ought to be possible to also compile VST/VST3 and AU versions for Windows and Mac OS but these have not yet been tested. The github runner currently reports them as successfully built.
|
||||
|
||||
Windows versions may be built with:
|
||||
|
||||
( cd dpf; make clean ) # note the brackets
|
||||
make clean
|
||||
make mingw64
|
||||
# or make mingw32 if you want 32-bit
|
||||
|
||||
This appears to work, in limited testing.
|
||||
|
||||
Installing
|
||||
----------
|
||||
|
@ -24,6 +24,6 @@ SKIP_NATIVE_AUDIO_FALLBACK = true
|
||||
|
||||
include ../dpf/Makefile.plugins.mk
|
||||
|
||||
TARGETS += jack lv2_sep
|
||||
TARGETS += jack lv2_sep vst2 vst3
|
||||
|
||||
all: $(TARGETS)
|
||||
|
@ -39,7 +39,7 @@ void AlphaOsc::activate() {
|
||||
|
||||
// Processing function
|
||||
void AlphaOsc::run(const float **, float **outputs, uint32_t frames, const MidiEvent *midiEvents, uint32_t midiEventCount) {
|
||||
bzero(outputs[0], sizeof(float) * frames);
|
||||
memset(outputs[0], 0, sizeof(float) * frames);
|
||||
|
||||
// cast unused parameters to void for now to stop the compiler complaining
|
||||
//(void)midiEventCount;
|
||||
|
Loading…
Reference in New Issue
Block a user