mirror of
https://gitlab.freedesktop.org/emersion/libliftoff.git
synced 2024-11-16 19:47:55 +01:00
1ee86c6290
This allows turning on and off debug logs, as well as defining a logging callback.
58 lines
1 KiB
Meson
58 lines
1 KiB
Meson
project(
|
|
'liftoff',
|
|
'c',
|
|
version: '0.0.0',
|
|
license: 'MIT',
|
|
meson_version: '>=0.47.0',
|
|
default_options: [
|
|
'c_std=c99',
|
|
'warning_level=3',
|
|
'werror=true',
|
|
],
|
|
)
|
|
|
|
cc = meson.get_compiler('c')
|
|
|
|
add_project_arguments(cc.get_supported_arguments([
|
|
'-Wno-missing-braces',
|
|
'-Wno-unused-parameter',
|
|
]), language: 'c')
|
|
|
|
liftoff_inc = include_directories('include')
|
|
|
|
drm = dependency('libdrm')
|
|
|
|
liftoff_deps = [drm]
|
|
|
|
liftoff_lib = library(
|
|
meson.project_name(),
|
|
files(
|
|
'display.c',
|
|
'layer.c',
|
|
'list.c',
|
|
'log.c',
|
|
'output.c',
|
|
),
|
|
include_directories: liftoff_inc,
|
|
version: meson.project_version(),
|
|
dependencies: liftoff_deps,
|
|
install: true,
|
|
)
|
|
|
|
liftoff = declare_dependency(
|
|
link_with: liftoff_lib,
|
|
include_directories: liftoff_inc,
|
|
dependencies: liftoff_deps,
|
|
)
|
|
|
|
pkgconfig = import('pkgconfig')
|
|
pkgconfig.generate(
|
|
libraries: liftoff_lib,
|
|
version: meson.project_version(),
|
|
filebase: meson.project_name(),
|
|
name: meson.project_name(),
|
|
description: 'Hardware composer library',
|
|
)
|
|
|
|
subdir('example')
|
|
subdir('test')
|