aboutsummaryrefslogtreecommitdiffstats
path: root/library.json
diff options
context:
space:
mode:
authorGennadiy Civil <misterg@google.com>2018-12-14 13:54:42 -0500
committerGennadiy Civil <misterg@google.com>2018-12-14 13:54:43 -0500
commitb5f5c596a9915106c1ac36a3f89db4e0e49c07d1 (patch)
tree2bc11702641f6bcca31032b4c343238d7b9178f6 /library.json
parentc6cb7e033591528a5fe2c63157a0d8ce927740dc (diff)
parent31eb5e9b873af4b509be2f77616113007fa0de9d (diff)
downloadgoogletest-b5f5c596a9915106c1ac36a3f89db4e0e49c07d1.tar.gz
googletest-b5f5c596a9915106c1ac36a3f89db4e0e49c07d1.tar.bz2
googletest-b5f5c596a9915106c1ac36a3f89db4e0e49c07d1.zip
Merge pull request #2000 from ciband:feat/add_support_platformio
PiperOrigin-RevId: 225552792
Diffstat (limited to 'library.json')
-rw-r--r--library.json51
1 files changed, 51 insertions, 0 deletions
diff --git a/library.json b/library.json
new file mode 100644
index 00000000..3104ec1e
--- /dev/null
+++ b/library.json
@@ -0,0 +1,51 @@
+{
+ "name": "googletest",
+ "keywords": "unittest, unit, test, gtest, gmock",
+ "description": "googletest is a testing framework developed by the Testing Technology team with Google's specific requirements and constraints in mind. No matter whether you work on Linux, Windows, or a Mac, if you write C++ code, googletest can help you. And it supports any kind of tests, not just unit tests.",
+ "license": "BSD-3-Clause",
+ "homepage": "https://github.com/abseil/googletest/blob/master/README.md",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/abseil/googletest.git"
+ },
+ "version": "1.8.1",
+ "exclude": [
+ "ci",
+ "googlemock/build-aux",
+ "googlemock/cmake",
+ "googlemock/make",
+ "googlemock/msvc",
+ "googlemock/scripts",
+ "googlemock/test",
+ "googlemock/CMakeLists.txt",
+ "googlemock/Makefile.am",
+ "googlemock/configure.ac",
+ "googletest/cmake",
+ "googletest/codegear",
+ "googletest/m4",
+ "googletest/make",
+ "googletest/msvc",
+ "googletest/scripts",
+ "googletest/test",
+ "googletest/xcode",
+ "googletest/CMakeLists.txt",
+ "googletest/Makefile.am",
+ "googletest/configure.ac",
+ ],
+ "frameworks": "arduino",
+ "platforms": [
+ "espressif32"
+ ],
+ "export": {
+ "include": [
+ "googlemock/include/*",
+ "googletest/include/*"
+ ]
+ },
+ "build": {
+ "flags": [
+ "-I googlemock/include",
+ "-I googletest/include"
+ ]
+ }
+}