mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-05-01 19:38:03 +02:00
Used by tests and the sphinx utility, which may or may not be built, and if they're not built we don't need to build those libs either.
13 lines
296 B
Meson
13 lines
296 B
Meson
cairo_missing_sources = [
|
|
'strndup.c',
|
|
'getline.c',
|
|
]
|
|
|
|
inccairomissing = include_directories('.')
|
|
|
|
libcairomissing = static_library('cairo-missing', cairo_missing_sources,
|
|
c_args: ['-DHAVE_CONFIG_H'],
|
|
include_directories: [incbase, incsrc],
|
|
install: false,
|
|
build_by_default: false,
|
|
)
|