A Tool for Algorithmic Composition
Work in progress
Table of Contents
First, make sure you have the latest version of CMake in you system. Then, proceed with the following steps:
- Clone the composerlib repository from GitHub using the following command:
git clone git@github.com:composernew/composerlib.git
- Enter the composerlib directory:
cd composerlib
- Create a directory to build the project:
mkdir build
cd build
- Configure the build script
cmake .. -DCMAKE_C_COMPILER=/usr/bin/gcc-10 -DCMAKE_CXX_COMPILER=/usr/bin/g++-10 -DCMAKE_CXX_FLAGS="-O2" -DCMAKE_BUILD_TYPE=Release
- Build all targets:
cmake --build . -j 2 --config Release
- Start with the
optimizerexample:
cd examples
./example_optimizer
