From c4d913a5b4ecbe4d8faa615d5d97baf9dbce48ef Mon Sep 17 00:00:00 2001 From: Maximilian Gerhardt Date: Wed, 10 Mar 2021 20:08:12 +0100 Subject: [PATCH] Add library.json meta-info file for PlatformIO Allows PlatformIO to use this repository as a library, in e.g. a lib_deps expression. --- library.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 library.json diff --git a/library.json b/library.json new file mode 100644 index 0000000..677f9a8 --- /dev/null +++ b/library.json @@ -0,0 +1,21 @@ +{ + "name": "STM8_headers", + "version": "0.0.1", + "repository": { + "type": "git", + "url": "https://github.com/gicking/STM8_headers.git" + }, + "authors": { + "name": "Georg Icking-Konert", + "email": "icking@onlinehome.de", + "url": "https://github.com/gicking" + }, + "license": "MIT", + "platforms": "ststm8", + "frameworks": "*", + "build": { + "flags": [ + "-I include/" + ] + } +} \ No newline at end of file