Files
RedBear-OS/local/recipes/libs/libxcvt/source/meson.build
T
vasilito f36b6a4582 feat: add display stack dependency recipes
Add lcms2, libdisplay-info, libepoxy, and libxcvt recipes required
by the KWin/Mesa display stack.

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
2026-05-11 10:10:11 +01:00

29 lines
925 B
Meson

project('libxcvt', 'c',
version: '0.1.3',
meson_version: '>= 0.40.0',
default_options: ['warning_level=1',
'buildtype=debugoptimized'])
libcvt_version = meson.project_version().split('.')
cc = meson.get_compiler('c')
mdep = cc.find_library('m', required : false)
prefix = get_option('prefix')
inc = include_directories('include')
man = join_paths(prefix, get_option('mandir'))
subdir('include')
subdir('lib')
# subdir('cvt') -- CLI omitted for Redox target
# subdir('man') -- manpage omitted for Redox target
pkg_mod = import('pkgconfig')
pkg_mod.generate(libraries : libxcvt,
version : meson.project_version(),
name : 'libxcvt',
description : 'A Library to generate VESA CVT standard timing modelines.')
libxcvt_dep = declare_dependency(link_with: libxcvt,
include_directories: inc)