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
New file |
| | |
| | | { |
| | | "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": "*" |
| | | } |
| | | |