exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

meson.build (1583B)


      1 # This build file is in the public domain
      2 
      3 install_data('coins.conf', 'exchange-offline.conf', install_dir: pkgcfgedir)
      4 
      5 executable(
      6     'taler-exchange-offline',
      7     ['taler-exchange-offline.c'],
      8     dependencies: [
      9         libtalerutil_dep,
     10         libtalerjson_dep,
     11         libtalerexchange_dep,
     12         libtalerextensions_dep,
     13         gnunetjson_dep,
     14         gnunetutil_dep,
     15         gnunetcurl_dep,
     16         gcrypt_dep,
     17         json_dep,
     18     ],
     19     include_directories: [incdir, configuration_inc],
     20     install: true,
     21 )
     22 
     23 
     24 executable(
     25     'taler-exchange-kyc-trigger',
     26     ['taler-exchange-kyc-trigger.c'],
     27     dependencies: [
     28         libtalerutil_dep,
     29         libtalerexchange_dep,
     30         gnunetjson_dep,
     31         gnunetutil_dep,
     32         gnunetcurl_dep,
     33         gcrypt_dep,
     34         json_dep,
     35     ],
     36     include_directories: [incdir, configuration_inc],
     37     install: true,
     38 )
     39 
     40 
     41 executable(
     42     'taler-auditor-offline',
     43     ['taler-auditor-offline.c'],
     44     dependencies: [
     45         libtalerutil_dep,
     46         libtalerjson_dep,
     47         libtalerexchange_dep,
     48         libtalerextensions_dep,
     49         gnunetjson_dep,
     50         gnunetutil_dep,
     51         gnunetcurl_dep,
     52         gcrypt_dep,
     53         json_dep,
     54     ],
     55     include_directories: [incdir, configuration_inc],
     56     install: true,
     57 )
     58 
     59 
     60 executable(
     61     'taler-exchange-dbinit',
     62     ['taler-exchange-dbinit.c'],
     63     dependencies: [
     64         libtalerutil_dep,
     65         libtalerpq_dep,
     66         libtalerexchangedb_dep,
     67         gnunetutil_dep,
     68         gcrypt_dep,
     69     ],
     70     include_directories: [incdir, configuration_inc],
     71     install: true,
     72 )