mirror of
https://gitlab.freedesktop.org/libinput/libei.git
synced 2026-05-05 00:48:02 +02:00
meson.build: use proper include handling for the proto dir
This commit is contained in:
parent
5ea229d261
commit
520c20904e
4 changed files with 6 additions and 3 deletions
|
|
@ -44,6 +44,7 @@ endif
|
|||
add_project_arguments(cc.get_supported_arguments(cflags), language: 'c')
|
||||
|
||||
inc_src = include_directories('src')
|
||||
inc_proto = include_directories('proto')
|
||||
|
||||
protocol_version = 1
|
||||
|
||||
|
|
@ -106,6 +107,7 @@ deps_libei = [
|
|||
lib_libei = shared_library('ei',
|
||||
src_libei,
|
||||
dependencies: deps_libei,
|
||||
include_directories: [inc_proto],
|
||||
gnu_symbol_visibility: 'hidden',
|
||||
install: true
|
||||
)
|
||||
|
|
@ -147,6 +149,7 @@ src_libeis = files(
|
|||
lib_libeis = shared_library('eis',
|
||||
src_libeis,
|
||||
dependencies: [dep_libutil, dep_protobuf],
|
||||
include_directories: [inc_proto],
|
||||
gnu_symbol_visibility: 'hidden',
|
||||
install: true
|
||||
)
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@
|
|||
#include "util-mem.h"
|
||||
#include "util-io.h"
|
||||
|
||||
#include "proto/ei.pb-c.h"
|
||||
#include "ei.pb-c.h"
|
||||
#include "brei-shared.h"
|
||||
|
||||
struct brei_message_private {
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@
|
|||
#include "util-object.h"
|
||||
#include "util-io.h"
|
||||
|
||||
#include "proto/ei.pb-c.h"
|
||||
#include "ei.pb-c.h"
|
||||
#include "libei-proto.h"
|
||||
#include "brei-shared.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@
|
|||
#include "util-strings.h"
|
||||
#include "util-tristate.h"
|
||||
|
||||
#include "proto/ei.pb-c.h"
|
||||
#include "ei.pb-c.h"
|
||||
#include "libeis-proto.h"
|
||||
#include "brei-shared.h"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue