1
0
Fork 0
mirror of https://github.com/deltachat/deltachat-core.git synced 2025-10-04 18:29:19 +02:00
deltachat-core/cmdline/meson.build
Floris Bruynooghe a251dcc42f Tweak buildscripts a little
- Require a minimum meson version, so we can tell people to use
  --wrap-mode=forcefallback

- Rename the option "fat" to "monolith"

- Error when trying to build a monolith static library, that's a lot
  of work since meson does not natively support this.

- Create a dependency for our main lib and use that in the
  commandline.  This fixes some duplication.
2018-09-18 23:33:34 +02:00

14 lines
161 B
Meson

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