You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
417 B
17 lines
417 B
8 years ago
|
if get_option('shell-fullscreen')
|
||
|
srcs_shell_fullscreen = [
|
||
|
'fullscreen-shell.c',
|
||
|
fullscreen_shell_unstable_v1_server_protocol_h,
|
||
|
fullscreen_shell_unstable_v1_protocol_c,
|
||
|
]
|
||
|
shared_library(
|
||
|
'fullscreen-shell',
|
||
|
srcs_shell_fullscreen,
|
||
|
include_directories: include_directories('..', '../shared'),
|
||
|
dependencies: dep_libweston,
|
||
|
name_prefix: '',
|
||
|
install: true,
|
||
|
install_dir: dir_module_weston
|
||
|
)
|
||
|
endif
|