diff --git a/library.json b/library.json new file mode 100644 index 00000000..8e28853e --- /dev/null +++ b/library.json @@ -0,0 +1,51 @@ +{ + "name": "googletest", + "keywords": "unit-testing, testing, tdd, testing-framework, gtest, gmock", + "description": "Google Testing and Mocking Framework", + "license": "BSD-3-Clause", + "homepage": "https://google.github.io/googletest/", + "repository": { + "type": "git", + "url": "https://github.com/google/googletest.git" + }, + "version": "1.13.0", + "frameworks": "*", + "platforms": [ + "espressif32", + "espressif8266", + "native" + ], + "export": { + "include": [ + "googlemock/include", + "googlemock/src", + "googletest/include", + "googletest/src", + "platformio-build.py" + ] + }, + "headers": [ + "gtest/gtest.h", + "gmock/gmock.h" + ], + "build": { + "flags": [ + "-Igooglemock", + "-Igooglemock/include", + "-Igoogletest", + "-Igoogletest/include" + ], + "srcFilter": [ + "-<*>", + "+", + "-", + "-", + "-", + "+", + "-", + "-", + "-" + ], + "extraScript": "platformio-build.py" + } +}