Makefile.projbuild 308 B

12345678
  1. # Anyone compiling mbedTLS code needs the name of the
  2. # alternative config file
  3. CPPFLAGS += -DMBEDTLS_CONFIG_FILE='"mbedtls/esp_config.h"'
  4. # Catch usage of deprecated mbedTLS functions when building tests
  5. ifneq ("$(filter mbedtls,$(TEST_COMPONENTS_LIST))","")
  6. CPPFLAGS += -DMBEDTLS_DEPRECATED_WARNING
  7. endif