File: meson.build

package info (click to toggle)
librest 0.10.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 856 kB
  • sloc: ansic: 7,856; makefile: 17; xml: 9
file content (25 lines) | stat: -rw-r--r-- 379 bytes parent folder | download
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
example_names = [
  'test-raw',
  'test-xml',
  'dump-xml',
  'get-flickr-favorites',
  'lastfm-shout',
  'gitlab-oauth2-example',
]

example_deps = [
  glib_dep,
  libsoup_dep,
  librest_dep,
  librest_extras_dep,
  config_dep,
]

foreach name : example_names
  example = executable(name,
    '@0@.c'.format(name),
    dependencies: example_deps,
  )
endforeach

subdir('demo')