aboutsummaryrefslogtreecommitdiff
path: root/src/rest/meson.build
blob: f093e195d39a1b0dfe4854d504807d7e60dbda40 (plain) (blame)
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
32
33
34
35
36
37
libgnunetrest_src = ['rest.c']

gnunetservicerest_src = ['gnunet-rest-server.c']

configure_file(input : 'rest.conf',
               output : 'rest.conf',
               configuration : cdata,
               install: true,
               install_dir: pkgcfgdir)


if get_option('monolith')
  foreach p : libgnunetrest_src + gnunetservicerest_src
    gnunet_src += 'rest/' + p
  endforeach
  subdir_done()
endif


libgnunetrest = library('gnunetrest',
        libgnunetrest_src,
        soversion: '0.0.0',
        dependencies: [libgnunetutil_dep, mhd_dep],
        include_directories: [incdir, configuration_inc],
        install: true,
        install_dir: get_option('libdir'))
pkg.generate(libgnunetrest, url: 'https://www.gnunet.org',
             description : 'Provides API for accessing the REST service')
libgnunetrest_dep = declare_dependency(link_with : libgnunetrest)

executable ('gnunet-rest-server',
            gnunetservicerest_src,
            dependencies: [libgnunetrest_dep, libgnunetutil_dep, mhd_dep],
            include_directories: [incdir, configuration_inc],
            install: true,
            install_dir: get_option('libdir') / 'gnunet' / 'libexec')