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.
24 lines
512 B
Plaintext
24 lines
512 B
Plaintext
#ifndef WEBCC_CONFIG_H_
|
|
#define WEBCC_CONFIG_H_
|
|
|
|
// Compile configurations.
|
|
|
|
// Set 1/0 to enable/disable logging.
|
|
#define WEBCC_ENABLE_LOG 1
|
|
|
|
#if WEBCC_ENABLE_LOG
|
|
// 0:VERB, 1:INFO, 2:USER, 3:WARN or 4:ERRO
|
|
#define WEBCC_LOG_LEVEL 2
|
|
#endif
|
|
|
|
// Set 1/0 to enable/disable SSL/HTTPS.
|
|
#define WEBCC_ENABLE_SSL 0
|
|
|
|
// Set 1/0 to enable/disable GZIP compression.
|
|
#define WEBCC_ENABLE_GZIP 0
|
|
|
|
// Set 1 to use C++17 filesystem or 0 to use Boost filesystem.
|
|
#define WEBCC_USE_STD_FILESYSTEM 1
|
|
|
|
#endif // WEBCC_CONFIG_H_
|