Move indev to shared component
This commit is contained in:
parent
f81f4587f6
commit
b98b8d1be2
10 changed files with 58 additions and 153 deletions
|
|
@ -15,7 +15,6 @@ add_project_arguments('-DBB_VERSION="@0@"'.format(meson.project_version()), lang
|
|||
buffyboard_sources = [
|
||||
'command_line.c',
|
||||
'font_32.c',
|
||||
'indev.c',
|
||||
'main.c',
|
||||
'sq2lv_layouts.c',
|
||||
'terminal.c',
|
||||
|
|
@ -23,7 +22,9 @@ buffyboard_sources = [
|
|||
]
|
||||
|
||||
shared_sources = [
|
||||
'../shared/cursor/cursor.c'
|
||||
'../shared/cursor/cursor.c',
|
||||
'../shared/indev.c',
|
||||
'../shared/log.c',
|
||||
]
|
||||
|
||||
squeek2lvgl_sources = [
|
||||
|
|
@ -38,6 +39,7 @@ executable(
|
|||
include_directories: ['..'],
|
||||
dependencies: [
|
||||
dependency('libinput'),
|
||||
dependency('libudev'),
|
||||
meson.get_compiler('c').find_library('m', required: false),
|
||||
],
|
||||
install: true
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue