mirror of
https://github.com/google/googletest.git
synced 2025-04-05 13:35:03 +00:00
add back support for platformio
Added back support for PlatformIO.
This commit is contained in:
parent
bb2941fcc6
commit
5ec752720a
1 changed files with 51 additions and 0 deletions
51
library.json
Normal file
51
library.json
Normal file
|
@ -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": [
|
||||
"-<*>",
|
||||
"+<googletest/src/*.cc>",
|
||||
"-<googletest/src/gtest-all.cc>",
|
||||
"-<googletest/src/gtest_main.cc>",
|
||||
"-<googletest/test/*>",
|
||||
"+<googlemock/src/*.cc>",
|
||||
"-<googlemock/src/gmock-all.cc>",
|
||||
"-<googlemock/src/gmock_main.cc>",
|
||||
"-<googlemock/test/*>"
|
||||
],
|
||||
"extraScript": "platformio-build.py"
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue