CMakeLists.txt 401 B

12345678910
  1. set(CMAKE_CXX_STANDARD 20)
  2. idf_component_register( SRC_DIRS .
  3. REQUIRES esp_common pthread json spiffs
  4. PRIV_REQUIRES esp_http_client esp_http_server esp-tls services
  5. INCLUDE_DIRS .
  6. )
  7. #doing our own implementation of new operator for some pre-compiled binaries
  8. target_link_libraries(${COMPONENT_LIB} INTERFACE "-u _ZdlPv")
  9. target_link_libraries(${COMPONENT_LIB} INTERFACE "-u _Znwj")