summaryrefslogtreecommitdiff
path: root/examples/application5/meson.build
blob: f0fed1ca59b9c3c413c020e3e572f4ff248451dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

app5_resources = gnome.compile_resources(
  'exampleapp5 resources',
  'exampleapp.gresource.xml',
  source_dir: '.'
)

app5_schemas = gnome.compile_schemas()


app5 = executable(
  'exampleapp5',
  'main.c',
  'exampleapp.c',
  'exampleapp.h',
  'exampleappwin.c',
  'exampleappwin.h',
  app5_resources,
  app5_schemas,
  dependencies: libgtk_dep
)