2018-03-20 21:03:56 +00:00
|
|
|
libegg_sources = [
|
|
|
|
'egg-hex.c',
|
|
|
|
'egg-secure-memory.c',
|
|
|
|
'egg-testing.c',
|
|
|
|
]
|
|
|
|
|
2019-05-12 15:51:04 +00:00
|
|
|
libegg_deps = [
|
|
|
|
glib_deps,
|
|
|
|
]
|
|
|
|
|
2020-06-01 07:05:58 +00:00
|
|
|
if get_option('gcrypt')
|
2018-03-20 21:03:56 +00:00
|
|
|
libegg_sources += [
|
|
|
|
'egg-dh.c',
|
|
|
|
'egg-hkdf.c',
|
|
|
|
'egg-libgcrypt.c',
|
|
|
|
]
|
|
|
|
|
2019-05-12 15:51:04 +00:00
|
|
|
libegg_deps += gcrypt_dep
|
|
|
|
endif
|
2018-03-20 21:03:56 +00:00
|
|
|
|
|
|
|
libegg = static_library('egg',
|
|
|
|
libegg_sources,
|
|
|
|
dependencies: libegg_deps,
|
2019-09-20 15:32:14 +00:00
|
|
|
include_directories: [config_h_dir, build_dir],
|
2018-03-20 21:03:56 +00:00
|
|
|
)
|
2021-07-03 16:54:04 +00:00
|
|
|
|
|
|
|
# Tests
|
|
|
|
test_names = [
|
|
|
|
'test-hex',
|
|
|
|
'test-secmem',
|
|
|
|
]
|
|
|
|
|
|
|
|
if get_option('gcrypt')
|
|
|
|
test_names += [
|
|
|
|
'test-dh',
|
|
|
|
'test-hkdf',
|
|
|
|
]
|
|
|
|
endif
|
|
|
|
|
|
|
|
foreach _test : test_names
|
|
|
|
|
|
|
|
test_bin = executable(_test,
|
|
|
|
'@0@.c'.format(_test),
|
|
|
|
dependencies: libegg_deps,
|
|
|
|
link_with: libegg,
|
|
|
|
include_directories: config_h_dir,
|
|
|
|
)
|
|
|
|
|
|
|
|
test(_test, test_bin,
|
|
|
|
suite: 'libegg',
|
|
|
|
)
|
|
|
|
endforeach
|