aboutsummaryrefslogtreecommitdiff
path: root/config.h
blob: 8c9874690605718a6b1d6c1457c8ec1b623e3cba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

#ifdef DEBUG

#include <assert.h>
#define ASSERT(cond) assert(cond)
#define LOGLEVEL RED_LOG_DEBUG
#else

#define ASSERT(cond) ((void)0)
#define LOGLEVEL RED_LOG_INFO

#endif