Switched build system to meson.

This commit is contained in:
Heiko Reese
2021-08-21 22:57:01 +02:00
parent 70bdb895a5
commit 276ddf35aa
7 changed files with 67 additions and 59 deletions

14
src/meson.build Normal file
View File

@ -0,0 +1,14 @@
configure_file(input: 'config.h.in',
output: 'config.h',
configuration: conf_data)
executable('genkey', 'genkey.c', dependencies : [ sodium_deps ] )
shared_library('exim-encrypt-dlfunc', 'libexim-encrypt-dlfunc.c',
dependencies : [ sodium_deps ],
install: true)
simple_exim_test = find_program('simple_exim_test.sh')
test('simple test', simple_exim_test)