You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
563 B
C
23 lines
563 B
C
#ifndef WEBCC_CONFIG_H_
|
|
#define WEBCC_CONFIG_H_
|
|
|
|
// Compile configurations.
|
|
// This file is auto-generated by CMake during configuration
|
|
// from config.h.in.
|
|
|
|
// Set 1/0 to enable/disable logging.
|
|
#define WEBCC_ENABLE_LOG @WEBCC_ENABLE_LOG@
|
|
|
|
#if WEBCC_ENABLE_LOG
|
|
// 0:VERB, 1:INFO, 2:WARN, 3:ERRO or 4:FATA
|
|
#define WEBCC_LOG_LEVEL @WEBCC_LOG_LEVEL@
|
|
#endif
|
|
|
|
// Set 1/0 to enable/disable SSL/HTTPS.
|
|
#define WEBCC_ENABLE_SSL @WEBCC_ENABLE_SSL@
|
|
|
|
// Set 1/0 to enable/disable GZIP compression.
|
|
#define WEBCC_ENABLE_GZIP @WEBCC_ENABLE_GZIP@
|
|
|
|
#endif // WEBCC_CONFIG_H_
|