From 31b859cdf48d9311af8d3320fc9cdec815ebf080 Mon Sep 17 00:00:00 2001 From: Manuel Bleichenbacher <10954524+manuelbl@users.noreply.github.com> Date: Fri, 19 Apr 2019 12:15:30 +0200 Subject: [PATCH] Improve example setup --- examples/hello_world/Makefile | 2 ++ examples/mac_address/Makefile | 2 ++ examples/provisioning/Makefile | 2 ++ examples/send_recv/Makefile | 2 ++ 4 files changed, 8 insertions(+) diff --git a/examples/hello_world/Makefile b/examples/hello_world/Makefile index 1038c2d..b34b839 100644 --- a/examples/hello_world/Makefile +++ b/examples/hello_world/Makefile @@ -1,3 +1,5 @@ PROJECT_NAME := hello_world +EXTRA_COMPONENT_DIRS := $(abspath ../..) + include $(IDF_PATH)/make/project.mk diff --git a/examples/mac_address/Makefile b/examples/mac_address/Makefile index 58130c9..e269026 100644 --- a/examples/mac_address/Makefile +++ b/examples/mac_address/Makefile @@ -1,3 +1,5 @@ PROJECT_NAME := mac_address +EXTRA_COMPONENT_DIRS := $(abspath ../..) + include $(IDF_PATH)/make/project.mk diff --git a/examples/provisioning/Makefile b/examples/provisioning/Makefile index 5866668..1e89463 100644 --- a/examples/provisioning/Makefile +++ b/examples/provisioning/Makefile @@ -1,3 +1,5 @@ PROJECT_NAME := provisioning +EXTRA_COMPONENT_DIRS := $(abspath ../..) + include $(IDF_PATH)/make/project.mk diff --git a/examples/send_recv/Makefile b/examples/send_recv/Makefile index 96ee4b2..b9ba20a 100644 --- a/examples/send_recv/Makefile +++ b/examples/send_recv/Makefile @@ -1,3 +1,5 @@ PROJECT_NAME := send_recv +EXTRA_COMPONENT_DIRS := $(abspath ../..) + include $(IDF_PATH)/make/project.mk