Clarify that make installs by default

This commit is contained in:
Armin 2026-07-21 02:12:16 +02:00
commit 10b32ab3ce

View file

@ -27,20 +27,21 @@ Load an audio file, slice it into regions (automatically via onset detection or
Requires CMake 3.22+ and a C++17 compiler. Requires CMake 3.22+ and a C++17 compiler.
```sh
make # Fetch JUCE, configure, build, and install (AU + VST3)
```
Running `make` with no arguments will fetch JUCE, build MonoSlicer in Release mode, copy the AU and VST3 plugins to your system directories, and trigger an Audio Unit rescan.
Individual targets are also available:
```sh ```sh
make fetch # Clone JUCE 8.0.9 make fetch # Clone JUCE 8.0.9
make configure # CMake configure make configure # CMake configure
make build # Build (Release) make build # Build (Release)
make install # Install AU + VST3 to system directories
``` ```
### Installing
```sh
make install
```
Copies AU and VST3 to the system plugin directories and triggers an Audio Unit rescan.
### Clean ### Clean
```sh ```sh