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

Since we do not have access to the value of wrap-mode we can not make the etpan dependency to behave correctly. Hack around it by introducing a new option just for etpan.
12 lines
285 B
Meson
12 lines
285 B
Meson
option(
|
|
'monolith',
|
|
type: 'boolean',
|
|
value: false,
|
|
description: 'Build a libdeltachat.so with minimal external dependencies'
|
|
)
|
|
option(
|
|
'force-etpan-fallback',
|
|
type: 'boolean',
|
|
value: false,
|
|
description: 'Use bundled libetpan, as it ignores --wrap-mode=forcefallback'
|
|
)
|