Add support for meson build system
[tinc] / src / chacha-poly1305 / meson.build
1 src_chacha_poly = files(
2   'chacha-poly1305.c',
3   'chacha.c',
4   'poly1305.c',
5 )
6
7 lib_chacha_poly = static_library(
8   'chacha_poly',
9   sources: src_chacha_poly,
10   implicit_include_directories: false,
11   include_directories: inc_conf,
12   build_by_default: false,
13 )
14