CMakeLists.txt 347 B

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