CMakeLists.txt 369 B

1234567891011
  1. idf_component_register( SRCS operator.cpp tools.c trace.c
  2. REQUIRES esp_common pthread
  3. PRIV_REQUIRES esp_http_client esp-tls json
  4. INCLUDE_DIRS .
  5. )
  6. #doing our own implementation of new operator for some pre-compiled binaries
  7. target_link_libraries(${COMPONENT_LIB} INTERFACE "-u _ZdlPv")
  8. target_link_libraries(${COMPONENT_LIB} INTERFACE "-u _Znwj")