From 704f60fdd65429d5bcabcad1358c2dea0c7874da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Raphael=20Brand=C3=A3o?= Date: Fri, 17 Jul 2020 11:20:06 -0300 Subject: [PATCH] add library.json with @ivankravets suggestion --- library.json | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 library.json diff --git a/library.json b/library.json new file mode 100644 index 0000000..9b61f2b --- /dev/null +++ b/library.json @@ -0,0 +1,25 @@ +{ + "name": "esp32-camera", + "version": "1.0.0", + "keywords": "esp32, camera, espressif, esp32-cam", + "description": "ESP32 compatible driver for OV2640, OV3660, OV5640 and OV7725 image sensors.", + "repository": { + "type": "git", + "url": "https://github.com/espressif/esp32-camera" + }, + "frameworks": "espidf", + "platforms": "*", + "build": { + "flags": [ + "-Idriver/include", + "-Iconversions/include", + "-Idriver/private_include", + "-Iconversions/private_include", + "-Isensors/private_include", + "-fno-rtti" + ], + "includeDir": ".", + "srcDir": ".", + "srcFilter": ["-<*>", "+", "+", "+"] + } +}