2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-23 18:37:35 +00:00
kea/src/lib/cryptolink/meson.build

22 lines
522 B
Meson
Raw Normal View History

2024-12-19 13:27:16 +02:00
kea_cryptolink_lib = library('kea-cryptolink',
'cryptolink.cc',
'cryptolink.h',
'crypto_hash.cc',
'crypto_hash.h',
'crypto_hmac.cc',
'crypto_hmac.h',
'crypto_rng.cc',
'crypto_rng.h',
'openssl_common.h',
'openssl_hash.cc',
'openssl_hmac.cc',
'openssl_link.cc',
dependencies: [crypto],
include_directories: [include_directories('.')] + includes,
install: true,
install_dir: 'lib',
link_with: libs_built_so_far,
)
libs_built_so_far = [kea_cryptolink_lib] + libs_built_so_far
subdir('tests')