Add build options of backends
[platform/core/uifw/libds-tizen.git] / src / libds / allocator / meson.build
1 libds_files += files('shm.c')
2
3 libtbm = dependency(
4   'libtbm',
5   required: false,
6   not_found_message: 'Required for TBM allocator support.'
7 )
8 if libtbm.found()
9   libds_files += files('tbm.c')
10   libds_deps += libtbm
11   features += { 'tbm-allocator': true }
12 endif