* Install Visual Studio Community Edition or other: https://visualstudio.microsoft.com/fr/vs/community/
* MacOS: clang
* CMake version > 3.5
### Build `generate_crend_ivas_tables`
* Open a command line terminal
* Execute
*`generate_crend_ivas_tables` executable shall be in folder [`../../scripts/binauralRenderer_interface`](../../scripts/binauralRenderer_interface)
* Execute:
```
cd ./scripts/binauralRenderer_interface
mkdir -p build
cd build
cmake ..
cmake --build . --config Release
cd ../../..
```
* This will generate `generate_crend_ivas_tables` executable which will be in folder [`./scripts/binauralRenderer_interface`](./scripts/binauralRenderer_interface)
* On Windows this executable requires DLL from MATLAB, you need to add to your path `*/matlab/version/bin/win64`
* For more details on `generate_crend_ivas_tables` see [`ivas_crend_sofa_to_rom_table_converter_readme.txt`](ivas_crend_sofa_to_rom_table_converter_readme.txt).
* On Apple Silicon Mac with Intel MATLAB, it is necessary to add `SET(CMAKE_OSX_ARCHITECTURES "x86_64")` in the `CMakeLists.txt` near the top of the file. This forces the compilation to use Intel architecture instead ofo the native one.