Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BUILD.md instructions #448

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions BUILD.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@

# Neural Amp Modeler Plug-in

## Building

Commands are for bash/zsh and apply to Windows (Git Bash) or macOS (Terminal) builds.

If you didn't already clone the repo with:

git clone --recurse-submodules https://github.com/sdatkinson/NeuralAmpModelerPlugin

Then you will need to grab the submodules:

git submodule init
git submodule update

You will need to install the VST3 SDK for iPlugin2:

cd iPlug2/Dependencies/IPlug/VST3_SDK/ && \
curl -L https://www.steinberg.net/vst3sdk -O && \
unzip vst3sdk && \
mv VST_SDK/vst3sdk/* .

Then build for your platform:

cd ../../../../NeuralAmpModeler/scripts/

Run one of the makedist-xxx scripts. Windows users should open an
`x64 Native Tools Command Prompt for VS` command window before running
`makedist-win.bat`

_Note: the build scripts take two arguments, [demo|full] and [zip|installer].
I have only tested the above instructions using `makedist-win.bat demo zip`._