mirror of
https://github.com/deltachat/deltachat-core.git
synced 2025-10-04 18:29:19 +02:00

- 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.
14 lines
161 B
Meson
14 lines
161 B
Meson
src = [
|
|
'cmdline.c',
|
|
'stress.c',
|
|
'main.c',
|
|
]
|
|
|
|
inc = include_directories('.')
|
|
|
|
|
|
exe = executable(
|
|
'delta', src,
|
|
dependencies: [dep],
|
|
install: true,
|
|
)
|