diff options
Diffstat (limited to 'meson_options.txt')
-rw-r--r-- | meson_options.txt | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/meson_options.txt b/meson_options.txt index 0e1aca4..b4ed44d 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -1,12 +1,8 @@ -option('static', +option('enable-pic', + type : 'feature', + value : 'enabled', + description : 'Switch whether to generate position-independent code') +option('enable-tests', type : 'boolean', value : false, - description : 'Enable building a static library') -option('shared', - type : 'boolean', - value : false, - description : 'Enable building a dynamic library') -option('tests', - type : 'boolean', - value : false, - description : 'Enable building and running tests') + description : 'Switch for building and running tests') |