exchange

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

meson.build (506B)


      1 # This build file is in the public domain
      2 
      3 # Age restriction as extension library
      4 
      5 age_plugindir = get_option('libdir') / 'taler-exchange'
      6 
      7 shared_module(
      8     'taler_extension_age_restriction',
      9     'age_restriction.c',
     10     install_rpath: rpath_option,
     11     dependencies: [
     12         libtalerutil_dep,
     13         libtalerjson_dep,
     14         gnunetjson_dep,
     15         gnunetutil_dep,
     16         json_dep,
     17     ],
     18     include_directories: [incdir, configuration_inc],
     19     install: true,
     20     install_dir: age_plugindir,
     21 )
     22 
     23