diff options
Diffstat (limited to 'meson_options.txt')
-rw-r--r-- | meson_options.txt | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt new file mode 100644 index 0000000..cd79386 --- /dev/null +++ b/meson_options.txt @@ -0,0 +1,15 @@ +option('use_geoip', + type : 'feature', + value : 'auto', + description : 'Use the GeoIP library to retrieve geo-information' +) +option('use_maxminddb', + type : 'feature', + value : 'auto', + description : 'Use the maxminddb library to retrieve geo-information' +) +option('use_runtime_linking', + type : 'feature', + value : 'auto', + description : 'Load the GeoIP or maxminddb library at runtime if available' +) |