pierreguillot / Camomile

An audio plugin with Pure Data embedded that allows to load and to control patches
GNU General Public License v3.0
892 stars 62 forks source link

Update of mac/linux plugin generation script: generate only one plugin type #244

Closed aviloff closed 3 years ago

aviloff commented 3 years ago

New keys -vst3 -au -lv2 cause the generation of only respective plugin types.

LV2 does not work with current 1.0.8-beta4 release version, possibly due to variable renaming in the script for the current development branch.


Not tested on Linux.

pierreguillot commented 3 years ago

Thank you. I have one remark: The way it is done if the user specifies two options such -au -vst3, it will only generate the VST3 plugin. This can be easily fixed by replacing the condition elif by if and else by if none of au/vst3/lv2, this way the user could generate VST3 and AU without LV2 for example (or any other possibility). What do you think?

aviloff commented 3 years ago

I agree that it would be better to be able in theory to generate several plugin types.

I fixed the indentation from tabs to spaces, applied autoindentation and now it all should be fine.