0cbad35638
Kernel source (ephemeral — changes durable in local/patches/kernel/): - P20 x2apic ICR mode fix, P21 x2apic SMP fix applied - ACPI MADT, RSDP, SDT improvements - Context switch, percpu, event, IRQ scheme updates - MSI/vector allocation, NUMA/SLIT/SRAT support Local recipe source updates: - redox-driver-acpi: bus/prt hardening - redox-drm: Intel display, KMS connector improvements - driver-manager: config/scheme hardening - thermald: main.rs fix - uutils-tar, ninja-build: source updates Other: - bootloader, installer, redoxfs, relibc, userutils source updates - recipe.toml.backup, libxcvt source directory
29 lines
853 B
Meson
29 lines
853 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')
|
|
subdir('man')
|
|
|
|
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)
|