First, create a new SSH key and associate it with your GitHub account: Generate a new SSH key and add to ssh-agent
For UNIX, a handy install script is provided at the top level.
Simply run ./configure
, and dependencies will be installed and the project will be built.
This works for both macOS and Debian users.
Before you can build the project, you first need to install the dependencies.
./install_deps/install_deps_linux.sh
./install_deps/install_deps_osx.sh
Depending on your env you may run into permission issues. Here's how to fix them:
sudo chown -R `whoami` /usr/local
Not supported at this time. Feel free to create a PR with instructions on how to get it working. Go to the CMake Website: http://www.cmake.org/download/
- Run
mkdir build
in the repo root directory, which will create a folder calledbuild
. - Navigate into the folder using
cd build
. - Then run
cmake ..
, which will tellCMake
to generate build files for the project into yourbuild
directory. - Then run
make -j4
, which will build the code.