Forked brummbrum's repo at https://github.com/brummbrum/reaKontrol for a couple reasons:
- Save a few people time in compiling the binaries for macOS.
- Making the binaries available to macOS users who are otherwise turned off from using reaKontrol due to having to compile the binaries.
- Go to the Releases.
- Download the .zip file.
- Unarchive the .zip file which will create a
./UserPlugins
folder. - Copy this folder into your REAPER resource folder:
a. Usually in:
~/Library/Application Support/REAPER/
b. Or just go to:REAPER -> Options -> Show REAPER resource path in explorer/finder...
- Open REAPER (close it and reopen if it is already open).
- The "Mixer" on your Komplete Kontrol should be lighting up.
- RTFM: https://github.com/brummbrum/reaKontrol/blob/Releases/ReaKontrol_v110_Manual.pdf
Tested on:
- Mac Studio M2 Max
- s88 mk2
I'm only providing the compiled binaries for macOS and cannot offer any support on the nuts and bolts of brummbrum's repo.
- Fork of the excellent ReaKontrol repository originally published by James Teh: https://github.com/jcsteh/reaKontrol
- Fork Author: brumbear@pacificpeaks
- Fork Copyright: 2019-2020 Pacific Peaks Studio, see individual copyrights in source code
- OSX contributions by Björn Kalkbrenner: https://github.com/terminar
- License: GNU General Public License version 2.0.
- License Notes: As the original work is published under GPLv2 the modified programs are also licensed under GPLv2. May be updated to GPLv3 if copyright holder of original work agrees to update too.
- New features will be merged continously into this fork's master @ https://github.com/brummbrum/reaKontrol
- Testing and calibration is done with NI S-Series Mk2 Komplete Kontrol Keyboard.
- Stable releases are published together with binaries (Windows only) in a dedicated release branch: https://github.com/brummbrum/reaKontrol/releases
- Can be found under releases: https://github.com/brummbrum/reaKontrol/releases
This section is for those interested in building ReaKontrol from source code. The build instructions have changed from the parent repository, this section will reflect these changes, cmake is now used for better cross platform maintenance and syntax highlighting + support in IDEs (and less dependencies).
The ReaKontrol Git repository is located at https://github.com/brummbrum/reaKontrol.git. You can clone it with the following command, which will place files in a directory named reaKontrol:
git clone https://github.com/brummbrum/reaKontrol.git
To build ReaKontrol, you will need:
- CMake, version 3.12 or later:
- Microsoft Visual Studio 2017 Community:
- Visual Studio 2019 is not yet supported.
- Download Visual Studio 2017 Community
- When installing Visual Studio, you need to enable the following:
- On the Workloads tab, in the Windows group: Desktop development with C++
- Command Line Tools for Xcode
To build ReaKontrol, from a command prompt, change to the ReaKontrol checkout directory and run the following commands:
cd build
cmake .. -A x64
cmake --build . --config Release
The resulting dll can be found in the build/bin/Release
directory (Windows)
Note: If you are still building for Reaper x86 32bit specify -A x86 as target architecture above.
To build ReaKontrol, from a command prompt, change to the ReaKontrol checkout directory and run the following commands:
cd build
cmake ..
cmake --build . --config Release
The resulting dylib can be found in the build/lib
directory (OSX).
First, comment out 'set(CMAKE_OSX_ARCHITECTURES x86_64)' in 'CMakeLists.txt'. Then build as described above.
Both ARM and x86 binaries can reside in parallel and load depending on Rosetta settings by naming them like this:
ls ~/Library/Application\ Support/REAPER/UserPlugins
reaper_kontrol-x86_64.dylib
reaper_kontrol.dylib
If you have followed the build steps, you can attach the last command:
cmake --build . --target install
The rea_kontrol.dll is then copied to your
- Win32: %APPDATA%/Reaper/UserPlugins
- OSX: $home/Library/Application Support/Reaper/UserPlugins folder.