mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-06 20:48:51 +00:00
1365948cee
`files` is a reversed keyword in meson. Try to avoid using it.
35 lines
716 B
Meson
35 lines
716 B
Meson
r_search_sources = [
|
|
'aes-find.c',
|
|
'bytepat.c',
|
|
'keyword.c',
|
|
# 'old_xrefs.c',
|
|
'regexp.c',
|
|
'rsa-find.c',
|
|
'search.c',
|
|
'strings.c',
|
|
'xrefs.c',
|
|
]
|
|
|
|
r_search = library('r_search', r_search_sources,
|
|
include_directories: [platform_inc],
|
|
c_args: library_cflags,
|
|
dependencies: [r_util_dep],
|
|
install: true,
|
|
implicit_include_directories: false,
|
|
soversion: r2_libversion
|
|
)
|
|
|
|
r_search_dep = declare_dependency(link_with: r_search,
|
|
include_directories: [platform_inc])
|
|
|
|
pkgconfig_mod.generate(r_search,
|
|
subdirs: 'libr',
|
|
version: r2_version,
|
|
name: 'r_search',
|
|
filebase: 'r_search',
|
|
requires: [
|
|
'r_util'
|
|
],
|
|
description: 'radare foundation libraries'
|
|
)
|