From 814d41873f719b51bc44c2160644dbe4d9d7f8b8 Mon Sep 17 00:00:00 2001 From: Petteri Aimonen Date: Tue, 5 Mar 2024 10:18:43 +0200 Subject: [PATCH] Add platformio library definition This allows importing the scpi-parser library to platformio projects using this definition in platformio.ini: lib_deps = https://github.com/j123b567/scpi-parser.git --- library.json | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 library.json diff --git a/library.json b/library.json new file mode 100644 index 00000000..c6649199 --- /dev/null +++ b/library.json @@ -0,0 +1,24 @@ +{ + "name": "scpi-parser", + "keywords": "scpi", + "version": "2.3-pre", + "description": "Open Source SCPI device library", + "repository": { + "type": "git", + "url": "https://github.com/j123b567/scpi-parser.git" + }, + "authors": { + "name": "Jan Breuer", + "email": "jan.breuer@jaybee.cz" + }, + "build": { + "includeDir": "libscpi/inc", + "srcDir": "libscpi/src" + }, + "examples": [ + "examples/test-interactive/main.c" + ], + "frameworks": "*", + "platforms": "*" +} +