From 3630f4944bbdceb9db178ab673fc6cbeb26ea5df Mon Sep 17 00:00:00 2001 From: Joel Guittet Date: Fri, 16 Aug 2024 12:51:55 +0200 Subject: [PATCH] project: add component configuration file --- .gitignore | 3 +-- main/idf_component.yml | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+), 2 deletions(-) create mode 100644 main/idf_component.yml diff --git a/.gitignore b/.gitignore index d3e78f5..8c22e6c 100755 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,7 @@ .vscode build dependencies.lock -main/idf_component.yml managed_components sdkconfig sdkconfig.ci -sdkconfig.old \ No newline at end of file +sdkconfig.old diff --git a/main/idf_component.yml b/main/idf_component.yml new file mode 100644 index 0000000..516c707 --- /dev/null +++ b/main/idf_component.yml @@ -0,0 +1,20 @@ +# @file idf_component.yml +# @brief mender-esp32-example main component dependencies +# +# Copyright joelguittet and mender-mcu-client contributors +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +dependencies: + espressif/esp_websocket_client: "~=1.2.3" + joltwallet/littlefs: "~=1.14.2"