fix(esp_modem): specify override_path in example manifest files

This commit is contained in:
Ivan Grokhotkov
2023-09-18 12:19:48 +02:00
committed by David Cermak
parent 1d8923cfbb
commit 5b78da4689
12 changed files with 25 additions and 12 deletions

View File

@ -2,7 +2,5 @@
# CMakeLists in this exact order for cmake to work correctly
cmake_minimum_required(VERSION 3.5)
set(EXTRA_COMPONENT_DIRS "../..")
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
project(ap-to-pppos)

View File

@ -0,0 +1,4 @@
dependencies:
espressif/esp_modem:
version: "^1.0.1"
override_path: "../../../"

View File

@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.5)
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
set(EXTRA_COMPONENT_DIRS ../.. ../../port/linux)
set(EXTRA_COMPONENT_DIRS ../../port/linux)
set(COMPONENTS main)
project(linux_modem)

View File

@ -0,0 +1,4 @@
dependencies:
espressif/esp_modem:
version: "^1.0.1"
override_path: "../../../"

View File

@ -4,7 +4,5 @@
# CMakeLists in this exact order for cmake to work correctly
cmake_minimum_required(VERSION 3.16)
set(EXTRA_COMPONENT_DIRS "../..")
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
project(modem_psm)

View File

@ -0,0 +1,4 @@
dependencies:
espressif/esp_modem:
version: "^1.0.1"
override_path: "../../../"

View File

@ -2,7 +2,5 @@
# in this exact order for cmake to work correctly
cmake_minimum_required(VERSION 3.8)
set(EXTRA_COMPONENT_DIRS "../..")
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
project(modem_tcp_client)

View File

@ -0,0 +1,4 @@
dependencies:
espressif/esp_modem:
version: "^1.0.1"
override_path: "../../../"

View File

@ -2,7 +2,5 @@
# in this exact order for cmake to work correctly
cmake_minimum_required(VERSION 3.5)
set(EXTRA_COMPONENT_DIRS "../..")
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
project(pppos_client)

View File

@ -3,7 +3,5 @@
cmake_minimum_required(VERSION 3.8)
set(CMAKE_CXX_STANDARD 17)
set(EXTRA_COMPONENT_DIRS "../..")
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
project(simple_cmux_client)

View File

@ -0,0 +1,4 @@
dependencies:
espressif/esp_modem:
version: "^1.0.1"
override_path: "../../../"

View File

@ -1,6 +1,9 @@
version: "1.0.4"
description: esp modem
description: Library for communicating with cellular modems in command and data modes
url: https://github.com/espressif/esp-protocols/tree/master/components/esp_modem
issues: https://github.com/espressif/esp-protocols/issues
documentation: https://docs.espressif.com/projects/esp-protocols/esp_modem/docs/latest/index.html
repository: https://github.com/espressif/esp-protocols.git
dependencies:
# Required IDF version
idf: