Created
September 15, 2016 00:24
-
-
Save jhorology/f05a0f00cfeb12c3751dfcd9f047c72c to your computer and use it in GitHub Desktop.
Compiling Ableton/link with Qt on OSX
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
brew install qt5 | |
brew linkapp qt5 | |
brew link --force qt5 | |
ln -s /usr/local/opt/qt5/mkspecs /usr/local/mkspecs | |
ln -s /usr/local/opt/qt5/plugins /usr/local/plugins | |
git clone https://github.com/Ableton/link.git | |
cd link | |
git submodule update --init --recursive | |
mkdir build | |
cd build | |
cmake -DLINK_BUILD_QT_EXAMPLES=ON .. | |
cmake --build . |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment