mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-25 14:47:57 +00:00
c932d1abff
* r2pm/meson.build: install r2pm * meson.build: use system libraries when available * travis: add fedora-sys to the list of things to test * bin_nso.c: still include lz4.c when not on meson * Dockerfile.travis: add required system dependencies to dockerfile * meson.build: split zip_dep in libzip and zlib dependencies * shlr/meson.build: zip needs zlib
20 lines
943 B
Meson
20 lines
943 B
Meson
option('static_runtime', type: 'boolean', value: false)
|
|
option('r2_libdir', type: 'string', value: '')
|
|
option('r2_incdir', type: 'string', value: '')
|
|
option('r2_datdir', type: 'string', value: '')
|
|
option('r2_wwwroot', type: 'string', value: '')
|
|
option('r2_sdb', type: 'string', value: '')
|
|
option('r2_zigns', type: 'string', value: '')
|
|
option('r2_themes', type: 'string', value: '')
|
|
option('r2_fortunes', type: 'string', value: '')
|
|
option('r2_flags', type: 'string', value: '')
|
|
option('r2_hud', type: 'string', value: '')
|
|
option('r2_version_commit', type: 'string', value: '')
|
|
option('r2_gittap', type: 'string', value: '')
|
|
option('r2_gittip', type: 'string', value: '')
|
|
option('use_sys_capstone', type: 'boolean', value: false)
|
|
option('use_sys_magic', type: 'boolean', value: false)
|
|
option('use_sys_zip', type: 'boolean', value: false)
|
|
option('use_sys_zlib', type: 'boolean', value: false)
|
|
option('use_sys_lz4', type: 'boolean', value: false)
|