Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 779 Bytes

README.md

File metadata and controls

24 lines (19 loc) · 779 Bytes

Chromaprint C++ Boilerplate

Start a Chromaprint C++ project faster than ever!

How to clone the repository

Since we are using git submodules, the repository needs to be cloned in a specific way in order to fetch those submodules.

With SSH

git clone --recursive git@github.com:quantumsheep/chromaprint-boilerplate.git

Without SSH

git clone --recursive https://github.com/quantumsheep/chromaprint-boilerplate.git

How to compile

If you don't have the build directory, you need to create it (mkdir build).

In the build directory do those commands that will compile the sources with chromaprint linked:

cmake ..
cmake --build .