Skip to content

Commit

Permalink
updated README
Browse files Browse the repository at this point in the history
  • Loading branch information
leomccormack committed Nov 19, 2021
1 parent a3ca527 commit 330d555
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,18 +50,16 @@ The [VST2_SDK](https://web.archive.org/web/20181016150224/https://download.stein
SDKs/VST2_SDK
```

**MacOSX, Linux and Windows (x86_64/amd64)** users must install a custom Intel MKL library. Detailed instructions on how to do this can be found [here](https://github.com/leomccormack/Spatial_Audio_Framework/blob/master/docs/PERFORMANCE_LIBRARY_INSTRUCTIONS.md).

**Raspberry Pi (ARM)** users instead require OpenBLAS and LAPACKE libraries:
By default, **MacOSX, Linux and Windows (x86_64/amd64)** users need to install [Intel oneAPI](https://www.intel.com/content/www/us/en/developer/tools/oneapi/base-toolkit-download.html) (MKL and IPP) and run the **install-safmkl**.sh/.bat and **install-safipp**.sh/.bat scripts found in SDKs/Spatial_Audio_Framework/scripts. Whereas, **Raspberry Pi (ARM)** users instead require OpenBLAS and LAPACKE libraries:
```
sudo apt-get install liblapack3 liblapack-dev libopenblas-base libopenblas-dev liblapacke-dev
```
However, alternative performance libraries may also be used. More information can be found [here](https://github.com/leomccormack/Spatial_Audio_Framework/blob/master/docs/PERFORMANCE_LIBRARY_INSTRUCTIONS.md).

**Linux (x86_64/amd64 and ARM)** users must also install the following libraries (the former line for JUCE, and the latter line for the Spatial_Audio_Framework):
**Linux (x86_64/amd64 and ARM)** users must also install the following libraries required by JUCE:

```
sudo apt-get install x11proto-xinerama-dev libwebkit2gtk-4.0-dev libgtk-3-dev x11proto-xext-dev libcurl4-openssl-dev libasound2-dev
sudo apt-get install libhdf5-dev libnetcdf-dev libnetcdff-dev
```

## Building the plug-ins via CMake
Expand Down
4 changes: 2 additions & 2 deletions audio_plugins/_SPARTA_spreader_/src/PluginEditor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
the "//[xyz]" and "//[/xyz]" sections will be retained when the file is loaded
and re-saved.
Created with Projucer version: 6.0.8
Created with Projucer version: 6.1.2
------------------------------------------------------------------------------
Expand Down Expand Up @@ -221,7 +221,7 @@ PluginEditor::PluginEditor (PluginProcessor* ownerFilter)
publicationLink.setColour (HyperlinkButton::textColourId, Colours::lightblue);
publicationLink.setBounds(getBounds().getWidth()-80, 4, 80, 12);
publicationLink.setJustificationType(Justification::centredLeft);

/* Specify screen refresh rate */
startTimer(TIMER_GUI_RELATED, 40);

Expand Down
2 changes: 1 addition & 1 deletion audio_plugins/_SPARTA_spreader_/src/PluginEditor.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
the "//[xyz]" and "//[/xyz]" sections will be retained when the file is loaded
and re-saved.
Created with Projucer version: 6.0.8
Created with Projucer version: 6.1.2
------------------------------------------------------------------------------
Expand Down

0 comments on commit 330d555

Please sign in to comment.