Browse Source

fixed macos vst buildfile errors

pull/165/head
Luke Esquivel falkTX <falktx@falktx.com> 5 years ago
parent
commit
a80da9156e
2 changed files with 4 additions and 2 deletions
  1. +3
    -1
      Makefile
  2. +1
    -1
      utils/generate-vst-bundles.sh

+ 3
- 1
Makefile View File

@@ -53,7 +53,6 @@ endif
clean:
$(MAKE) clean -C dgl
$(MAKE) clean -C examples/CairoUI
$(MAKE) clean -C examples/ExternalUI
$(MAKE) clean -C examples/Info
$(MAKE) clean -C examples/Latency
$(MAKE) clean -C examples/Meters
@@ -61,6 +60,9 @@ clean:
$(MAKE) clean -C examples/Parameters
$(MAKE) clean -C examples/States
$(MAKE) clean -C utils/lv2-ttl-generator
ifneq ($(MACOS_OR_WINDOWS),true)
$(MAKE) clean -C examples/ExternalUI
endif
rm -rf bin build

# --------------------------------------------------------------


+ 1
- 1
utils/generate-vst-bundles.sh View File

@@ -17,7 +17,7 @@ PLUGINS=`ls | grep vst.dylib`

for i in $PLUGINS; do
FILE=`echo $i | awk 'sub("-vst.dylib","")'`
cp -r ../dpf/utils/plugin.vst/ $FILE.vst
cp -r ../utils/plugin.vst/ $FILE.vst
mv $i $FILE.vst/Contents/MacOS/$FILE
rm -f $FILE.vst/Contents/MacOS/deleteme
sed -i -e "s/X-PROJECTNAME-X/$FILE/" $FILE.vst/Contents/Info.plist


Loading…
Cancel
Save