Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 650 Bytes

README.md

File metadata and controls

35 lines (27 loc) · 650 Bytes

Digital Signal Analysis C library (libdsac)

Dependencies

You have to install the following dependencies:

Quick compilation

To compile:

git clone https://github.com/oscimp/libdsac.git
cd libdsac
mkdir build
cd build
cmake ..
make
make install # may require root permissions

Available Options

  • DSAC_DEBUG: Enable the debug build type
  • DSAC_OPENMP: Activate the OpenMP parallelization (experimental)

To use a option use this command

cmake -DDSA_DEBUG=ON|OFF ..