diff options
-rw-r--r-- | crypto/CMakeLists.txt | 6 | ||||
-rw-r--r-- | 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( | |||
236 | o_fips.c | 236 | o_fips.c |
237 | o_init.c | 237 | o_init.c |
238 | o_str.c | 238 | o_str.c |
239 | o_time.c | ||
240 | aes/aes_cfb.c | 239 | aes/aes_cfb.c |
241 | aes/aes_ctr.c | 240 | aes/aes_ctr.c |
242 | aes/aes_ecb.c | 241 | aes/aes_ecb.c |
@@ -257,6 +256,7 @@ set( | |||
257 | asn1/a_string.c | 256 | asn1/a_string.c |
258 | asn1/a_strnid.c | 257 | asn1/a_strnid.c |
259 | asn1/a_time.c | 258 | asn1/a_time.c |
259 | asn1/a_time_posix.c | ||
260 | asn1/a_time_tm.c | 260 | asn1/a_time_tm.c |
261 | asn1/a_type.c | 261 | asn1/a_type.c |
262 | asn1/a_utf8.c | 262 | asn1/a_utf8.c |
@@ -356,6 +356,7 @@ set( | |||
356 | bn/bn_rand.c | 356 | bn/bn_rand.c |
357 | bn/bn_recp.c | 357 | bn/bn_recp.c |
358 | bn/bn_shift.c | 358 | bn/bn_shift.c |
359 | bn/bn_small_primes.c | ||
359 | bn/bn_sqr.c | 360 | bn/bn_sqr.c |
360 | bn/bn_sqrt.c | 361 | bn/bn_sqrt.c |
361 | bn/bn_word.c | 362 | bn/bn_word.c |
@@ -488,6 +489,7 @@ set( | |||
488 | ec/ecp_nist.c | 489 | ec/ecp_nist.c |
489 | ec/ecp_oct.c | 490 | ec/ecp_oct.c |
490 | ec/ecp_smpl.c | 491 | ec/ecp_smpl.c |
492 | ec/ecx_methods.c | ||
491 | ecdh/ecdh_kdf.c | 493 | ecdh/ecdh_kdf.c |
492 | ecdh/ech_err.c | 494 | ecdh/ech_err.c |
493 | ecdh/ech_key.c | 495 | ecdh/ech_key.c |
@@ -992,10 +994,12 @@ target_include_directories(crypto_obj | |||
992 | bytestring | 994 | bytestring |
993 | dh | 995 | dh |
994 | dsa | 996 | dsa |
997 | curve25519 | ||
995 | ec | 998 | ec |
996 | ecdh | 999 | ecdh |
997 | ecdsa | 1000 | ecdsa |
998 | evp | 1001 | evp |
1002 | hidden | ||
999 | hmac | 1003 | hmac |
1000 | modes | 1004 | modes |
1001 | ocsp | 1005 | 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( | |||
64 | add_library(ssl_obj OBJECT ${SSL_SRC}) | 64 | add_library(ssl_obj OBJECT ${SSL_SRC}) |
65 | target_include_directories(ssl_obj | 65 | target_include_directories(ssl_obj |
66 | PRIVATE | 66 | PRIVATE |
67 | . | 67 | ../crypto/hidden |
68 | ../crypto/bio | 68 | ../crypto/bio |
69 | ./hidden | ||
70 | . | ||
69 | ../include/compat | 71 | ../include/compat |
70 | PUBLIC | 72 | PUBLIC |
71 | ../include) | 73 | ../include) |