Build botan with ExternalProject and without amalgamation
All checks were successful
/ Build the server (push) Successful in 3m4s

This commit is contained in:
2023-10-23 18:30:35 +02:00
parent 13579acd8f
commit 023ef2ec49
11 changed files with 52 additions and 16 deletions

View File

@@ -9,7 +9,7 @@
#ifndef BOTAN_ASIO_ASYNC_OPS_H_
#define BOTAN_ASIO_ASYNC_OPS_H_
#include <botan_all.h>
#include <botan/types.h>
#include <asio.hpp>
#include <asio/yield.hpp>
#include "asio_error.h"

View File

@@ -9,7 +9,13 @@
#ifndef BOTAN_ASIO_TLS_CONTEXT_H_
#define BOTAN_ASIO_TLS_CONTEXT_H_
#include <botan_all.h>
#include <botan/credentials_manager.h>
#include <botan/ocsp.h>
#include <botan/rng.h>
#include <botan/tls_callbacks.h>
#include <botan/tls_policy.h>
#include <botan/tls_server_info.h>
#include <botan/tls_session_manager.h>
#include <functional>
namespace Botan::TLS {

View File

@@ -9,7 +9,9 @@
#ifndef BOTAN_ASIO_ERROR_H_
#define BOTAN_ASIO_ERROR_H_
#include <botan_all.h>
#include <botan/exceptn.h>
#include <botan/tls_alert.h>
#include <botan/tls_exceptn.h>
#include <asio/error_code.hpp>
namespace boost{

View File

@@ -9,7 +9,11 @@
#ifndef BOTAN_ASIO_STREAM_H_
#define BOTAN_ASIO_STREAM_H_
#include <botan_all.h>
#include <botan/tls_callbacks.h>
#include <botan/tls_channel.h>
#include <botan/tls_client.h>
#include <botan/tls_magic.h>
#include <botan/tls_server.h>
#include <asio.hpp>
#include "asio_async_ops.h"