File: meson.build

package info (click to toggle)
gmobile 0.6.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 688 kB
  • sloc: ansic: 2,605; sh: 37; xml: 32; python: 11; makefile: 9; javascript: 6
file content (24 lines) | stat: -rw-r--r-- 531 bytes parent folder | download | duplicates (2)
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