CMakeLists.txt 235 B

1234567
  1. file(GLOB_RECURSE LIBSOURCE "${COMPONENTS_DIR}/fota_service/*.c")
  2. include_directories(${COMPONENTS_DIR}/fota_service/include)
  3. add_library(fota_service STATIC ${LIBSOURCE})
  4. target_link_libraries(fota_service PUBLIC ${LIBS_LIBRARIES})