15 lines
1.7 KiB
Meson
15 lines
1.7 KiB
Meson
option('civetweb_cxx', type: 'feature', value: 'disabled', description: 'Enables the C++ wrapper library')
|
|
option('civetweb_lua', type: 'feature', value: 'disabled', description: 'Enable Lua CGIs')
|
|
option('civetweb_ssl', type: 'feature', value: 'enabled', description: 'Enables the secure socket layer')
|
|
option('civetweb_ssl_dynamic_loading', type: 'feature', value: 'auto', description: 'Dynamically loads the SSL library rather than linking it')
|
|
option('civetweb_serve_files', type: 'boolean', value: 'true', description: 'Configures the server to serve static files')
|
|
option('civetweb_serve_filesystems', type: 'boolean', value: 'true')
|
|
option('civetweb_enable_ipv6', type: 'boolean', value: 'false', description: 'Enables the IP version 6 support')
|
|
option('civetweb_enable_websockets', type: 'boolean', value: 'false', description: 'Enable websockets connections')
|
|
option('civetweb_enable_server_stats', type: 'boolean', value: 'false', description: 'Enable server statistics')
|
|
option('civetweb_enable_server_executable', type: 'boolean', value: 'true', description: 'Enable building of the server executable')
|
|
option('civetweb_ssl_openssl_api', type: 'combo', choices: ['1.0', '1.1'], value: '1.1', description: 'Version of the OpenSSL API to use')
|
|
option('civetweb_thread_stack_size', type: 'integer', value: 102400, description: 'The stack size in bytes for each thread created')
|
|
option('civetweb_install_executable', type: 'boolean', value: 'false', description: 'Enable installing CivetWeb executable')
|
|
option('civetweb_enable_cgi', type: 'boolean', value: 'true', description: 'Enables CGI, so theserver will execute CGI scripts')
|
|
option('civetweb_enable_caching', type: 'boolean', value: 'true', description: 'Enables caching, timegm is used')
|