paivana

HTTP paywall reverse proxy
Log | Files | Refs | Submodules | README | LICENSE

meson.build (722B)


      1 # This file is in the public domain
      2 
      3 paivana_httpd_SOURCES = [
      4   'paivana-httpd.c',
      5   'paivana-httpd_cookie.c',
      6   'paivana-httpd_daemon.c',
      7   'paivana-httpd_helper.c',
      8   'paivana-httpd_reverse.c',
      9   'paivana-httpd_pay.c',
     10   'paivana-httpd_templates.c',
     11   'paivana_pd.c',
     12 ]
     13 
     14 paivana_httpd_exe = executable(
     15     'paivana-httpd',
     16     paivana_httpd_SOURCES,
     17     dependencies: [
     18         talermerchant_dep,
     19         talertemplating_dep,
     20         talerutil_dep,
     21         gcrypt_dep,
     22         talermhd_dep,
     23         gnunetutil_dep,
     24         gnunetjson_dep,
     25         gnunetcurl_dep,
     26         mhd_dep,
     27         json_dep,
     28         curl_dep,
     29         zlib_dep,
     30     ],
     31     include_directories: [incdir, configuration_inc],
     32     install: true,
     33 )
     34 
     35