Skip to content

Commit

Permalink
Add neuralrecord, force separate macOS devs
Browse files Browse the repository at this point in the history
Signed-off-by: falkTX <falktx@falktx.com>
  • Loading branch information
falkTX committed Oct 13, 2023
1 parent fa09e58 commit 26a7b59
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,7 @@ BUNDLES += modspectre.lv2
BUNDLES += MVerb.lv2
BUNDLES += Nekobi.lv2
BUNDLES += neural_amp_modeler.lv2
BUNDLES += neuralrecord.lv2
# FIXME fails to build: implicit declaration of function 'basename'
BUNDLES += notes.lv2
BUNDLES += PingPongPan.lv2
Expand Down Expand Up @@ -568,6 +569,9 @@ $(PAWPAW_PREFIX)/lib/lv2/modspectre.lv2/manifest.ttl: $(BOOTSTRAP_FILES)
$(PAWPAW_PREFIX)/lib/lv2/neural_amp_modeler.lv2/manifest.ttl: $(BOOTSTRAP_FILES)
./utils/plugin-builder.sh $(PAWPAW_TARGET) neural-amp-modeler-lv2

$(PAWPAW_PREFIX)/lib/lv2/neuralrecord.lv2/manifest.ttl: $(BOOTSTRAP_FILES)
./utils/plugin-builder.sh $(PAWPAW_TARGET) neuralrecord

$(PAWPAW_PREFIX)/lib/lv2/notes.lv2/manifest.ttl: $(BOOTSTRAP_FILES)
./utils/plugin-builder.sh $(PAWPAW_TARGET) notes-lv2

Expand Down
2 changes: 1 addition & 1 deletion mod-plugin-builder
7 changes: 5 additions & 2 deletions systray/mod-app.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -643,12 +643,15 @@ private slots:
// regular duplex
else if (devInfo.canInput && devInfo.canOutput)
{
arguments.append("-d");
arguments.append(devInfo.uidMain);
#if defined(Q_OS_MAC) || defined(Q_OS_WIN)
arguments.append("-P");
arguments.append(devInfo.uidMain);
arguments.append("-C");
arguments.append(devInfo.uidMain);
#else
arguments.append("-d");
arguments.append(devInfo.uidMain);
#endif
}
// capture only
else if (devInfo.canInput)
Expand Down

0 comments on commit 26a7b59

Please sign in to comment.