blob: e46fcbdabced2d64b724bb23d42e42f4f16b8d88 [file] [log] [blame]
Chris Johnson39c09042018-12-06 12:35:06 -06001{
2 "name": "googletest",
3 "keywords": "unittest, unit, test, gtest, gmock",
4 "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.",
5 "license": "BSD-3-Clause",
Chris6d5ce402018-12-29 12:57:04 -06006 "homepage": "https://github.com/google/googletest/blob/master/README.md",
Chris Johnson39c09042018-12-06 12:35:06 -06007 "repository": {
8 "type": "git",
Chris6d5ce402018-12-29 12:57:04 -06009 "url": "https://github.com/google/googletest.git"
Chris Johnson39c09042018-12-06 12:35:06 -060010 },
Chris Johnson31eb5e92018-12-07 12:24:01 -060011 "version": "1.8.1",
Chris Johnson39c09042018-12-06 12:35:06 -060012 "frameworks": "arduino",
13 "platforms": [
14 "espressif32"
Chris6d5ce402018-12-29 12:57:04 -060015 ],
16 "export": {
Chris Johnson39c09042018-12-06 12:35:06 -060017 "include": [
18 "googlemock/include/*",
Chris6d5ce402018-12-29 12:57:04 -060019 "googlemock/src/*",
20 "googletest/include/*",
21 "googletest/src/*"
22 ],
23 "exclude": [
24 "ci",
25 "googlemock/build-aux",
26 "googlemock/cmake",
27 "googlemock/make",
28 "googlemock/msvc",
29 "googlemock/scripts",
Chris Johnson47568ea2019-02-05 16:16:43 -060030 "googlemock/src/gmock-all.cc",
Chrisadc50452019-01-03 21:01:02 -060031 "googlemock/src/gmock_main.cc",
Chris6d5ce402018-12-29 12:57:04 -060032 "googlemock/test",
33 "googlemock/CMakeLists.txt",
34 "googlemock/Makefile.am",
35 "googlemock/configure.ac",
36 "googletest/cmake",
37 "googletest/codegear",
38 "googletest/m4",
39 "googletest/make",
40 "googletest/msvc",
41 "googletest/scripts",
Chris Johnson47568ea2019-02-05 16:16:43 -060042 "googletest/src/gtest-all.cc",
Chrisadc50452019-01-03 21:01:02 -060043 "googletest/src/gtest_main.cc",
Chris6d5ce402018-12-29 12:57:04 -060044 "googletest/test",
45 "googletest/xcode",
46 "googletest/CMakeLists.txt",
47 "googletest/Makefile.am",
Chrisadc50452019-01-03 21:01:02 -060048 "googletest/configure.ac"
Chris6d5ce402018-12-29 12:57:04 -060049 ]
50 },
51 "build": {
Chris Johnson39c09042018-12-06 12:35:06 -060052 "flags": [
Chris6d5ce402018-12-29 12:57:04 -060053 "-Igooglemock/include",
Gennadiy Civil1bcbd582019-01-02 21:39:36 -050054 "-Igooglemock",
Chris6d5ce402018-12-29 12:57:04 -060055 "-Igoogletest/include",
56 "-Igoogletest"
Chris Johnson39c09042018-12-06 12:35:06 -060057 ]
Chris6d5ce402018-12-29 12:57:04 -060058 }
Chris Johnson39c09042018-12-06 12:35:06 -060059}