mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2025-12-21 02:50:17 +01:00
Precisely what Autotools does, instead of adding it as per-target C argument. Once we remove HAVE_CONFIG_H checks in every source file, we'll be able to drop it.
10 lines
253 B
Meson
10 lines
253 B
Meson
cairo_fdr_sources = [
|
|
'fdr.c',
|
|
]
|
|
|
|
libcairofdr = library('cairo-fdr', cairo_fdr_sources,
|
|
include_directories: [incbase, incsrc],
|
|
dependencies: deps,
|
|
install: true,
|
|
install_dir: join_paths(get_option('prefix'), get_option('libdir'), 'cairo'),
|
|
)
|