blob: 8cb121974a95b1bc108332bbccc89cbe78bfb97f [file] [log] [blame]
#pragma once
// settings for crow
// TODO - replace with runtime config. libucl?
/* #ifdef - enables debug mode */
//#define BMCWEB_ENABLE_DEBUG
/* #ifdef - enables logging */
//#define BMCWEB_ENABLE_LOGGING
/* #ifdef - enables ssl */
//#define BMCWEB_ENABLE_SSL
/* #define - specifies log level */
/*
Debug = 0
Info = 1
Warning = 2
Error = 3
Critical = 4
default to INFO
*/
#define BMCWEB_LOG_LEVEL 1
// compiler flags
#if __cplusplus >= 201402L
#define BMCWEB_CAN_USE_CPP14
#endif
#if defined(_MSC_VER)
#if _MSC_VER < 1900
#error "MSVC versions betfore VS2015 are not supported"
#endif
#endif