Home | History | Annotate | Download | only in googletest
      1 {
      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",
      6   "homepage": "https://github.com/google/googletest/blob/master/README.md",
      7   "repository": {
      8     "type": "git",
      9     "url": "https://github.com/google/googletest.git"
     10   },
     11   "version": "1.8.1",
     12   "frameworks": "arduino",
     13   "platforms": [
     14         "espressif32"
     15   ],
     16   "export": {
     17         "include": [
     18             "googlemock/include/*",
     19             "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",
     30             "googlemock/src/gmock-all.cc",
     31             "googlemock/src/gmock_main.cc",
     32             "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",
     42             "googletest/src/gtest-all.cc",
     43             "googletest/src/gtest_main.cc",
     44             "googletest/test",
     45             "googletest/xcode",
     46             "googletest/CMakeLists.txt",
     47             "googletest/Makefile.am",
     48             "googletest/configure.ac"
     49           ]
     50   },
     51   "build": {
     52         "flags": [
     53             "-Igooglemock/include",
     54             "-Igooglemock",
     55             "-Igoogletest/include",
     56             "-Igoogletest"
     57         ]
     58   }
     59 }
     60