From ad66a425620f0b62330c63f982eacba32b9c8588 Mon Sep 17 00:00:00 2001 From: Vitaly Puzrin Date: Tue, 24 Jul 2018 13:17:15 +0300 Subject: [PATCH] Add library config for PlatformIO --- library.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 library.json diff --git a/library.json b/library.json new file mode 100644 index 0000000..56096f8 --- /dev/null +++ b/library.json @@ -0,0 +1,18 @@ +{ + "name": "libfixmath", + "description": "Cross Platform Fixed Point Maths Library", + "version": "0.0.0", + "repository": { + "type": "git", + "url": "https://github.com/PetteriAimonen/libfixmath.git" + }, + "license": "MIT", + "export": { + "include": "libfixmath" + }, + "build": { + "srcFilter": "+" + }, + "frameworks": "*", + "platforms": "*" +}