blob: f91ea3c56a649a7b6cbd09461e2d81fc91074e74 [file] [log] [blame]
Dennis Tsiang33f0ece2023-11-29 12:45:04 +00001
2src_hwc3 = files(
3 'ComposerClient.cpp',
4 'Composer.cpp',
5 'service.cpp',
6)
7
8executable(
9 'android.hardware.composer.hwc3-service.drm',
10 src_hwc3,
11 cpp_args : common_cpp_flags,
12 dependencies : deps,
13 install : true,
14 link_with: drmhwc_common,
15 install_dir : get_option('bindir') / 'hw',
16 include_directories: inc_include,
17)
18
19configure_file(
20 input: 'hwc3-drm.rc',
21 output: '@PLAINNAME@',
22 copy: true,
23 install_dir: get_option('sysconfdir') / 'init',
24)
25
26configure_file(
27 input: 'hwc3-drm.xml',
28 output: '@PLAINNAME@',
29 copy: true,
30 install_dir: get_option('sysconfdir') / 'vintf' / 'manifest',
31)