Updated to newer wlroots and window finally renders

This commit is contained in:
wizbright 2018-06-15 13:16:15 -05:00
parent 578ddb43ba
commit 0ed5d25538
10 changed files with 871 additions and 10 deletions

View file

@ -16,6 +16,7 @@ project(
add_project_arguments('-Wno-unused-parameter', language: 'c')
cc = meson.get_compiler('c')
if cc.get_id() == 'clang'
add_project_arguments('-Wno-missing-field-initializers', language: 'c')
add_project_arguments('-Wno-missing-braces', language: 'c')
@ -27,6 +28,10 @@ add_project_arguments('-DWL_HIDE_DEPRECATED', language: 'c')
pixman = dependency('pixman-1')
wlroots = dependency('wlroots')
wayland_server = dependency('wayland-server')
wayland_client = dependency('wayland-client')
wayland_protos = dependency('wayland-protocols', version: '>=1.12')
subdir('protocol')
executable(
'waybox',
@ -37,5 +42,7 @@ executable(
pixman,
wlroots,
wayland_server,
wayland_protos,
wayland_client
]
)