mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2024-11-26 00:52:21 +00:00
3ce2ea9e16
Add render/allocator/ and include/render/allocator/ to hold everything allocator-related.
10 lines
239 B
Meson
10 lines
239 B
Meson
wlr_files += files(
|
|
'allocator.c',
|
|
'gbm.c',
|
|
'shm.c',
|
|
'drm_dumb.c',
|
|
)
|
|
|
|
has = cc.has_function('gbm_bo_get_fd_for_plane', dependencies: [gbm])
|
|
add_project_arguments('-DHAS_GBM_BO_GET_FD_FOR_PLANE=@0@'.format(has.to_int()), language: 'c')
|