cmake: mbedtls keep includes local

This commit is contained in:
Philippe Teuwen 2020-04-18 14:15:40 +02:00
commit b5ce5c1d99

View file

@ -1,5 +1,4 @@
set_property(SOURCE PROPERTY C_STANDARD 99) set_property(SOURCE PROPERTY C_STANDARD 99)
include_directories(../../common)
add_library(mbedtls add_library(mbedtls
../../common/mbedtls/aes.c ../../common/mbedtls/aes.c
@ -46,3 +45,5 @@ add_library(mbedtls
../../common/mbedtls/x509_crl.c ../../common/mbedtls/x509_crl.c
../../common/mbedtls/x509_crt.c ../../common/mbedtls/x509_crt.c
) )
target_include_directories(mbedtls PRIVATE ../../common)