blob: d9d560ff59a76692064eb335365d1a56afde4b7e [file] [log] [blame]
leng.fangdbaf6fa2024-06-20 19:31:04 +08001if get_option('simple-shell')
2 srcs_simple_shell = [
3 'weston-simpleshell.c',
4 simpleshell_server_protocol_h,
5 simpleshell_client_protocol_h,
6 simpleshell_protocol_c,
7 ]
8 deps_simple_shell=[
9 dep_libweston_public,
10 dep_libexec_weston,
11 ]
12 shared_library(
13 'weston_simpleshell',
14 srcs_simple_shell,
15 include_directories: common_inc,
16 dependencies: deps_simple_shell,
17 name_prefix: '',
18 install: true,
19 install_dir: dir_module_weston
20 )
21endif