mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-01 02:33:50 +00:00
25 lines
296 B
Meson
25 lines
296 B
Meson
|
|
files=[
|
|
'adler32.c',
|
|
'calc.c',
|
|
'crca.c',
|
|
'entropy.c',
|
|
'hamdist.c',
|
|
'hash.c',
|
|
'luhn.c',
|
|
'md4.c',
|
|
'md5.c',
|
|
'sha1.c',
|
|
'sha2.c',
|
|
'state.c',
|
|
'xxhash.c'
|
|
]
|
|
|
|
r_hash = shared_library('r_hash', files,
|
|
include_directories: [platform_inc],
|
|
dependencies: [mth],
|
|
link_with: [r_util],
|
|
install: true
|
|
)
|
|
|