Add a new meson option : -Dstatic-dependency=yes to use static dependencies

This commit is contained in:
ailin-nemui 2019-08-30 20:58:28 +02:00
commit 7aa67b142b
2 changed files with 15 additions and 7 deletions

View file

@ -10,5 +10,6 @@ option('enable-true-color', type : 'combo', description : 'Build with true colo
option('disable-gregex', type : 'combo', description : 'Build without GRegex (fall back to regex.h)', choices : ['no', 'yes'])
option('disable-utf8proc', type : 'combo', description : 'Build without Julia\'s utf8proc', choices : ['auto', 'yes', 'no'])
option('with-capsicum', type : 'combo', description : 'Build with Capsicum support', choices : ['auto', 'yes', 'no'])
option('install-glib', type : 'combo', description : 'Download and install GLib for you', choices : ['no', 'yes'])
option('static-dependency', type : 'combo', description : 'Request static dependencies', choices : ['no', 'yes'])
option('install-glib', type : 'combo', description : 'Download and install GLib for you', choices : ['no', 'yes', 'force'])
option('docdir', type : 'string', description : 'Documentation directory')