Loopp/src/config.hxx

48 lines
908 B
C++
Raw Normal View History

#ifndef LUPPP_CONFIG_H
#define LUPPP_CONFIG_H
2013-09-11 15:19:38 +02:00
/// PROGAM WIDE DEFINES
#define NAME "Luppp"
/// TEST OPTIONS
#define BUILD_TESTS 1
// only works with BUILD TESTS
#define BUILD_COVERAGE_TEST 1
/// DEBUG OPTIONS
// Track operations
#define DEBUG_TRACKS 1
// Clip selection / queueing
#define DEBUG_CLIP 1
// Buffer loading / resizing
#define DEBUG_BUFFER 1
2013-08-27 01:01:51 +02:00
// Logic : Warning NON RT!
#define DEBUG_LOGIC 1
2013-08-27 01:01:51 +02:00
// State save / load
#define DEBUG_STATE 1
2013-09-11 15:19:38 +02:00
/// COMPILE OPTIONS
#define DEBUG_KILL_ON_ERR 1
2013-09-11 15:19:38 +02:00
/// General Options
#define NTRACKS 8
#define NSCENES 10
2013-07-27 19:24:04 +02:00
#define MAX_BUFFER_SIZE 1024
// nsamples remaining during recording before Looper requests larger buffer
#define LOOPER_SAMPLES_BEFORE_REQUEST 44100
2013-09-11 15:19:38 +02:00
/// include debug.hxx for printing convienience
#include "debug.hxx"
#endif // LUPPP_CONFIG_H