summaryrefslogtreecommitdiff
path: root/src/examples/elementary/sphere_hunter/meson.build
blob: 4ef08822ead089912e7a83fb218555dbb8709628 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
examples = [
   'evas_3d_sphere_hunter'
]

edc_files = [
  'sphere_hunter.edc'
]

themes = []

foreach edc_file : edc_files
   themes += custom_target('edje_cc_' + edc_file,
    depends : edje_depends,
    input : edc_file,
    output : '@BASENAME@.edj',
    command : edje_cc_exe + ['-beta',
              '-id', elementary_img_data,
              '-id', meson.current_source_dir(),
              '-fd', meson.current_source_dir(),
              '-sd', meson.current_source_dir(),
              '-vd', meson.current_source_dir(),
              '-dd', meson.current_source_dir(),
              '-md', meson.current_source_dir(),
              '-td', meson.current_source_dir(),
              '@INPUT@', '@OUTPUT@'],
   )
endforeach

foreach example : examples
  executable(example, [example + '.c'] + themes, dependencies: [elementary, ecore])
endforeach