Crow/include/crow/settings.h

39 lines
663 B
C
Raw Normal View History

#pragma once
2014-05-20 16:17:56 +00:00
// settings for crow
2014-05-20 22:30:51 +00:00
// TODO - replace with runtime config. libucl?
2014-05-20 16:17:56 +00:00
/* #ifdef - enables debug mode */
//#define CROW_ENABLE_DEBUG
2014-05-20 16:17:56 +00:00
/* #ifdef - enables logging */
2014-05-20 22:30:51 +00:00
#define CROW_ENABLE_LOGGING
2016-08-28 05:46:31 +00:00
/* #ifdef - enables ssl */
//#define CROW_ENABLE_SSL
2014-05-20 22:30:51 +00:00
/* #define - specifies log level */
/*
Debug = 0
Info = 1
Warning = 2
Error = 3
Critical = 4
2014-09-12 03:16:37 +00:00
default to INFO
2014-05-20 22:30:51 +00:00
*/
2014-09-12 03:16:37 +00:00
#define CROW_LOG_LEVEL 1
// compiler flags
#if __cplusplus >= 201402L
#define CROW_CAN_USE_CPP14
#endif
#if defined(_MSC_VER)
#if _MSC_VER < 1900
#define CROW_MSVC_WORKAROUND
#define constexpr const
#define noexcept throw()
#endif
#endif