Skip to content

Commit

Permalink
Fix CLAP build on macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
Guillaume Piolat committed Nov 22, 2024
1 parent 2f3eb39 commit 99144f5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tools/dplug-build/source/plugin.d
Original file line number Diff line number Diff line change
Expand Up @@ -1213,10 +1213,12 @@ string makePListFile(Plugin plugin, string config, bool hasIcon, bool isAudioCom
CFBundleIdentifier = plugin.getAAXBundleIdentifier();
else if (configIsLV2(config))
CFBundleIdentifier = plugin.getLV2BundleIdentifier();
else if (configIsCLAP(config))
CFBundleIdentifier = plugin.getCLAPBundleIdentifier();
else if (configIsFLP(config))
CFBundleIdentifier = plugin.getFLPBundleIdentifier();
else
throw new Exception("Configuration name given by --config must start with \"VST\", \"VST3\", \"AU\", \"AAX\", \"LV2\", or \"FLP\"");
throw new Exception("Configuration name given by --config must start with \"VST\", \"VST3\", \"AU\", \"AAX\", \"LV2\", \"CLAP\", or \"FLP\"");

// Doesn't seem useful at all
//addKeyString("CFBundleName", plugin.prettyName);
Expand Down

0 comments on commit 99144f5

Please sign in to comment.