mirror of
https://gitlab.freedesktop.org/libinput/libei.git
synced 2026-05-11 07:18:08 +02:00
meson.build: drop spaces before colon
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
parent
3c7820baca
commit
81b82fcbd4
1 changed files with 11 additions and 11 deletions
22
meson.build
22
meson.build
|
|
@ -9,8 +9,8 @@ pkgconfig = import('pkgconfig')
|
||||||
cc = meson.get_compiler('c')
|
cc = meson.get_compiler('c')
|
||||||
cppflags = ['-Wno-unused-parameter', '-fvisibility=hidden']
|
cppflags = ['-Wno-unused-parameter', '-fvisibility=hidden']
|
||||||
cflags = cppflags + ['-Wmissing-prototypes', '-Wstrict-prototypes']
|
cflags = cppflags + ['-Wmissing-prototypes', '-Wstrict-prototypes']
|
||||||
add_project_arguments(cflags, language : 'c')
|
add_project_arguments(cflags, language: 'c')
|
||||||
add_project_arguments(cppflags, language : 'cpp')
|
add_project_arguments(cppflags, language: 'cpp')
|
||||||
|
|
||||||
config_h = configuration_data()
|
config_h = configuration_data()
|
||||||
config_h.set('_GNU_SOURCE', '1')
|
config_h.set('_GNU_SOURCE', '1')
|
||||||
|
|
@ -47,10 +47,10 @@ dep_libei = declare_dependency(link_with: lib_libei,
|
||||||
|
|
||||||
pkgconfig.generate(lib_libei,
|
pkgconfig.generate(lib_libei,
|
||||||
filebase: 'libei',
|
filebase: 'libei',
|
||||||
name : 'libEI',
|
name: 'libEI',
|
||||||
description : 'Emulated Input client library',
|
description: 'Emulated Input client library',
|
||||||
version : meson.project_version(),
|
version: meson.project_version(),
|
||||||
libraries : lib_libei,
|
libraries: lib_libei,
|
||||||
)
|
)
|
||||||
|
|
||||||
lib_libeis = shared_library('eis',
|
lib_libeis = shared_library('eis',
|
||||||
|
|
@ -69,10 +69,10 @@ dep_libeis = declare_dependency(link_with: lib_libeis,
|
||||||
|
|
||||||
pkgconfig.generate(lib_libeis,
|
pkgconfig.generate(lib_libeis,
|
||||||
filebase: 'libeis',
|
filebase: 'libeis',
|
||||||
name : 'libEIS',
|
name: 'libEIS',
|
||||||
description : 'Emulated Input server library',
|
description: 'Emulated Input server library',
|
||||||
version : meson.project_version(),
|
version: meson.project_version(),
|
||||||
libraries : lib_libeis,
|
libraries: lib_libeis,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -84,4 +84,4 @@ executable('ei-socket-client',
|
||||||
'tools/ei-socket-client.c',
|
'tools/ei-socket-client.c',
|
||||||
dependencies: [dep_libei])
|
dependencies: [dep_libei])
|
||||||
|
|
||||||
configure_file(output : 'config.h', configuration : config_h)
|
configure_file(output: 'config.h', configuration: config_h)
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue