blob: 7e6b8f42420f35f39fc0e20c42d0cbd0508b4d98 [file] [log] [blame]
Roman Stratiienko38094812022-12-09 19:16:41 +02001src_hwc2_device = files(
2 'hwc2_device.cpp',
3 'DrmHwcTwo.cpp',
4 'HwcDisplayConfigs.cpp',
5 'HwcDisplay.cpp',
6 'HwcLayer.cpp',
7)
8
9shared_library(
10 'hwcomposer.drm',
11 src_hwc2_device,
12 name_prefix : '',
13 cpp_args : common_cpp_flags + hwc2_cpp_flags,
14 dependencies : deps,
15 install : true,
16 link_whole: drmhwc_common,
17 install_dir : get_option('libdir') / 'hw',
18 include_directories: inc_include,
19)