1
0
Fork 0
mirror of https://github.com/deltachat/deltachat-core.git synced 2025-10-05 02:29:28 +02:00
deltachat-core/cmdline/meson.build
Floris Bruynooghe e8180dda9a Add very basic meson build infrastructure
This manages to build the .so and test binary on Debian stretch.
2017-12-29 13:38:39 +01:00

15 lines
181 B
Meson

src = [
'cmdline.c',
'stress.c',
'main.c',
]
inc = include_directories('.')
exe = executable(
'delta', src,
dependencies: [etpan],
link_with: lib,
install: true,
)