Skip to content

Commit

Permalink
CLAP dplug-build now rename to .clap for Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
Guillaume Piolat committed Nov 22, 2024
1 parent 99144f5 commit e251a4c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tools/dplug-build/source/main.d
Original file line number Diff line number Diff line change
Expand Up @@ -1037,6 +1037,11 @@ int main(string[] args)
// Simply copy the file
fileMove(plugin.dubOutputFileName, path ~ "/" ~ plugin.prettyName ~ ".so");
}
else if (configIsCLAP(config)) // CLAP special case
{
// Simply copy the file, rename to .clap
fileMove(plugin.dubOutputFileName, path ~ "/" ~ plugin.prettyName ~ ".clap");
}
}
else if (targetOS == OS.macOS)
{
Expand Down

0 comments on commit e251a4c

Please sign in to comment.