diff options
author | Chris <chrisjohnsonmail@gmail.com> | 2019-10-14 02:39:54 (GMT) |
---|---|---|
committer | Chris <chrisjohnsonmail@gmail.com> | 2019-10-14 02:39:54 (GMT) |
commit | 778733f9ecdd2b14a0167df54dd25d2d6f6e24f6 (patch) | |
tree | 6bc53d159525957ead5df15a2adc1e3b7bfd9e53 /library.json | |
parent | ba513d2c9525a7c986c115ed5d603f2cf17c6016 (diff) | |
parent | 84a5ae8b85605fd51cf3d0107315670d3cf00fa4 (diff) | |
download | googletest-778733f9ecdd2b14a0167df54dd25d2d6f6e24f6.zip googletest-778733f9ecdd2b14a0167df54dd25d2d6f6e24f6.tar.gz googletest-778733f9ecdd2b14a0167df54dd25d2d6f6e24f6.tar.bz2 |
feat: Add ESP8266 support
* Added support for ESP8266
* Removed previous Arduino defines in favor
of GTEST_OS_* syntax
* Improved PlatformIO library file to be more
stable when consumed in client applications.
Diffstat (limited to 'library.json')
-rw-r--r-- | library.json | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/library.json b/library.json index e46fcbd..ffbe4f3 100644 --- a/library.json +++ b/library.json @@ -11,7 +11,8 @@ "version": "1.8.1", "frameworks": "arduino", "platforms": [ - "espressif32" + "espressif32", + "espressif8266" ], "export": { "include": [ @@ -38,6 +39,7 @@ "googletest/m4", "googletest/make", "googletest/msvc", + "googletest/samples", "googletest/scripts", "googletest/src/gtest-all.cc", "googletest/src/gtest_main.cc", @@ -54,6 +56,24 @@ "-Igooglemock", "-Igoogletest/include", "-Igoogletest" + ], + "srcFilter": [ + "+<*>", + "-<.git/>", + "-<googlemock>", + "-<googlemock/test/>", + "-<googlemock/src>", + "+<googlemock/src/gmock-all.cc>", + "+<googletest/src/gtest-all.cc>", + "+<googlemock/src/gmock_main.cc>", + "-<googletest>", + "-<googletest/codegear/>", + "-<googletest/samples>", + "-<googletest/test/>", + "-<googletest/xcode>", + "-<googletest/src>", + "+<googletest/src/gtest-all.cc>", + "+<googletest/src/gtest_main.cc>" ] } } |