1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
if get_option('examples')
example_timeout = executable(
'gm-timeout',
['gm-timeout.c'],
dependencies: [gmobile_shared_dep],
install: true,
)
example_display_panel_preview = executable(
'gm-display-panel-preview',
['gm-display-panel-preview.c'],
dependencies: [gmobile_shared_dep],
install: true,
)
example_display_panel_run_phosh = executable(
'gm-display-panel-run-phosh',
['gm-display-panel-run-phosh.c'],
dependencies: [gmobile_shared_dep],
install: true,
)
endif
|