exchange

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

meson.build (2189B)


      1 talerexchange_headers = [
      2     'common.h',
      3     'delete-purses-PURSE_PUB.h',
      4     'get-aml-OFFICER_PUB-attributes-H_NORMALIZED_PAYTO.h',
      5     'get-aml-OFFICER_PUB-decisions.h',
      6     'get-aml-OFFICER_PUB-kyc-statistics-NAMES.h',
      7     'get-aml-OFFICER_PUB-legitimizations.h',
      8     'get-aml-OFFICER_PUB-measures.h',
      9     'get-aml-OFFICER_PUB-transfers-credit.h',
     10     'get-coins-COIN_PUB-history.h',
     11     'get-contracts-CONTRACT_PUB.h',
     12     'get-deposits-H_WIRE-MERCHANT_PUB-H_CONTRACT_TERMS-COIN_PUB.h',
     13     'get-keys.h',
     14     'get-kyc-check-H_NORMALIZED_PAYTO.h',
     15     'get-kyc-info-ACCESS_TOKEN.h',
     16     'get-kyc-proof-PROVIDER_NAME.h',
     17     'get-management-keys.h',
     18     'get-purses-PURSE_PUB-merge.h',
     19     'get-reserves-attest-RESERVE_PUB.h',
     20     'get-reserves-RESERVE_PUB.h',
     21     'get-reserves-RESERVE_PUB-history.h',
     22     'get-transfers-WTID.h',
     23     'post-aml-OFFICER_PUB-decision.h',
     24     'post-auditors-AUDITOR_PUB-H_DENOM_PUB.h',
     25     'post-batch-deposit.h',
     26     'post-blinding-prepare.h',
     27     'post-coins-COIN_PUB-refund.h',
     28     'post-kyc-start-ID.h',
     29     'post-kyc-upload-ID.h',
     30     'post-kyc-wallet.h',
     31     'post-management-aml-officers.h',
     32     'post-management-auditors.h',
     33     'post-management-auditors-AUDITOR_PUB-disable.h',
     34     'post-management-denominations-H_DENOM_PUB-revoke.h',
     35     'post-management-drain.h',
     36     'post-management-global-fees.h',
     37     'post-management-keys.h',
     38     'post-management-partners.h',
     39     'post-management-signkeys-EXCHANGE_PUB-revoke.h',
     40     'post-management-wire.h',
     41     'post-management-wire-disable.h',
     42     'post-management-wire-fee.h',
     43     'post-melt.h',
     44     'post-purses-PURSE_PUB-create.h',
     45     'post-purses-PURSE_PUB-deposit.h',
     46     'post-purses-PURSE_PUB-merge.h',
     47     'post-recoup-refresh.h',
     48     'post-recoup-withdraw.h',
     49     'post-reserves-attest-RESERVE_PUB.h',
     50     'post-reserves-RESERVE_PUB-close.h',
     51     'post-reserves-RESERVE_PUB-open.h',
     52     'post-reserves-RESERVE_PUB-purse.h',
     53     'post-reveal-melt.h',
     54     'post-reveal-withdraw.h',
     55     'post-withdraw.h',
     56     'post-withdraw_blinded.h',
     57 ]
     58 
     59 foreach h : talerexchange_headers
     60     install_headers(
     61         h,
     62         install_dir: get_option('includedir') / 'taler' / 'exchange',
     63     )
     64 endforeach