mirror of
https://github.com/wizbright/waybox.git
synced 2025-10-29 05:40:20 -04:00
Updated to newer wlroots and window finally renders
This commit is contained in:
parent
578ddb43ba
commit
0ed5d25538
10 changed files with 871 additions and 10 deletions
|
|
@ -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
|
||||
]
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue