From 1eedc3be61b96b7be8454cb8331c6b75bbaadc4b Mon Sep 17 00:00:00 2001 From: Pavel Sokolov Date: Wed, 7 Dec 2022 12:58:17 +0300 Subject: [PATCH] Added PlatformIO manifest library.json --- library.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 library.json diff --git a/library.json b/library.json new file mode 100644 index 000000000..a50c030c5 --- /dev/null +++ b/library.json @@ -0,0 +1,26 @@ +{ + "name": "MPark-Variant", + "version": "1.4.0", + "keywords": "C++ std variant", + "description": "MPark.Variant is an implementation of C++17 std::variant for C++11/14/17.", + "repository": { + "type": "git", + "url": "https://github.com/mpark/variant" + }, + "authors": [{ + "name": "Michael Park", + "email": "mcypark@gmail.com" + }], + "frameworks": "*", + "platforms": "*", + "export": { + "include": [ + "include/mpark/*" + ] + }, + "build": { + "srcFilter": [ + "-<*>" + ] + } +} \ No newline at end of file