From 35265d0e446cc48af768ba476378dd67ec46f826 Mon Sep 17 00:00:00 2001 From: Theo Buehler Date: Tue, 22 Nov 2022 19:20:28 +0100 Subject: Fix cmake builds --- crypto/CMakeLists.txt | 6 +++++- ssl/CMakeLists.txt | 4 +++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/crypto/CMakeLists.txt b/crypto/CMakeLists.txt index 2c0268c..1ed5405 100644 --- a/crypto/CMakeLists.txt +++ b/crypto/CMakeLists.txt @@ -236,7 +236,6 @@ set( o_fips.c o_init.c o_str.c - o_time.c aes/aes_cfb.c aes/aes_ctr.c aes/aes_ecb.c @@ -257,6 +256,7 @@ set( asn1/a_string.c asn1/a_strnid.c asn1/a_time.c + asn1/a_time_posix.c asn1/a_time_tm.c asn1/a_type.c asn1/a_utf8.c @@ -356,6 +356,7 @@ set( bn/bn_rand.c bn/bn_recp.c bn/bn_shift.c + bn/bn_small_primes.c bn/bn_sqr.c bn/bn_sqrt.c bn/bn_word.c @@ -488,6 +489,7 @@ set( ec/ecp_nist.c ec/ecp_oct.c ec/ecp_smpl.c + ec/ecx_methods.c ecdh/ecdh_kdf.c ecdh/ech_err.c ecdh/ech_key.c @@ -992,10 +994,12 @@ target_include_directories(crypto_obj bytestring dh dsa + curve25519 ec ecdh ecdsa evp + hidden hmac modes ocsp diff --git a/ssl/CMakeLists.txt b/ssl/CMakeLists.txt index 8e974a8..13072b1 100644 --- a/ssl/CMakeLists.txt +++ b/ssl/CMakeLists.txt @@ -64,8 +64,10 @@ set( add_library(ssl_obj OBJECT ${SSL_SRC}) target_include_directories(ssl_obj PRIVATE - . + ../crypto/hidden ../crypto/bio + ./hidden + . ../include/compat PUBLIC ../include) -- cgit v1.2.3-55-g6feb