From 6a04f52620b87a68393d5b7b10777f034bc057da Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Sun, 15 Apr 2018 06:28:02 +0300 Subject: [PATCH] Add info about "library.json" to README instruction --- platformio/commands/init.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/platformio/commands/init.py b/platformio/commands/init.py index dadf3e77..f343052d 100644 --- a/platformio/commands/init.py +++ b/platformio/commands/init.py @@ -168,16 +168,21 @@ The source code of each library should be placed in separate directory, like For example, see how can be organized `Foo` and `Bar` libraries: |--lib +| | | |--Bar | | |--docs | | |--examples | | |--src | | |- Bar.c | | |- Bar.h +| | |- library.json (optional, custom build options, etc) http://docs.platformio.org/page/librarymanager/config.html +| | | |--Foo | | |- Foo.c | | |- Foo.h +| | | |- readme.txt --> THIS FILE +| |- platformio.ini |--src |- main.c