mirror of
https://github.com/radareorg/radare2.git
synced 2025-03-04 12:27:40 +00:00

* meson.build: fix meson build when not on git * meson.build: make capstone a dependency * meson.build: make r_magic library optional * meson.build: capstone include is already in the dependency * meson.build: use dependencies instead of manual linking + includes * meson.build: add travis * flag/meson.build: include sdb dependency * travis-script: print messages based on install system * io/meson.build: add sdb as dependency * syscall/meson.build: missing sdb dependency * {parse,config}/meson.build: add sdb dependency * travis.yml: pass INSTALL_SYSTEM var to docker * {bin/shlr}/meson.build: add sdb_dep to r2java and bin * install meson and ninja-build in r2-travis docker * travis.yml: allow meson build to fail for now * anal/meson.build: add sdb and java dependencies * egg/meson.build: add sdb dependency * travis.yml: meson build env should be also in the includes list * core/meson.build: add java dep * meson.build: use dependencies also to create main r2 dependency * rasm2/meson.build: replace link_with with dependencies * rasm2/meson.build: add sdb as dependency * meson.builds: convert link_with to dependencies and fix tabs * travis-script: change meson install prefix and set PKG_CONFIG_PATH * travis-script: add lib64 to LD_LIBRARY_PATH
38 lines
712 B
Meson
38 lines
712 B
Meson
files = [
|
|
'bp.c',
|
|
'bp_io.c',
|
|
'bp_plugin.c',
|
|
'bp_traptrace.c',
|
|
'bp_watch.c',
|
|
'p/bp_arm.c',
|
|
'p/bp_bf.c',
|
|
'p/bp_mips.c',
|
|
'p/bp_ppc.c',
|
|
'p/bp_sh.c',
|
|
'p/bp_x86.c'
|
|
]
|
|
|
|
r_bp = library('r_bp', files,
|
|
include_directories: [platform_inc],
|
|
c_args: ['-DCORELIB=1'],
|
|
dependencies: [r_util_dep],
|
|
install: true,
|
|
implicit_include_directories: false,
|
|
soversion: r2_libversion
|
|
)
|
|
|
|
r_bp_dep = declare_dependency(link_with: r_bp,
|
|
include_directories: [platform_inc])
|
|
|
|
pkgconfig_mod.generate(
|
|
libraries: [r_bp],
|
|
subdirs: 'libr',
|
|
version: r2_version,
|
|
name: 'r_bp',
|
|
filebase: 'r_bp',
|
|
requires: [
|
|
'r_util'
|
|
],
|
|
description: 'radare foundation libraries'
|
|
)
|