-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGTestCpp.podspec.json
37 lines (37 loc) · 1.16 KB
/
GTestCpp.podspec.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "GTestCpp",
"version": "1.10.0",
"summary": "C++ unit testing framework",
"description": " Google's framework for writing C++ tests on a variety of platforms. This pod is designed for use with C++17 projects.\n",
"homepage": "https://github.com/google/googletest",
"license": {
"type": "BSD"
},
"authors": "Google, Inc.",
"platforms": {
"osx": "10.15"
},
"source": {
"git": "https://github.com/google/googletest.git",
"tag": "release-1.10.0"
},
"source_files": [
"googletest/src/*.cc",
"googletest/include/**/*.h"
],
"preserve_paths": "googletest/**/*.h",
"exclude_files": [
"googletest/src/gtest_main.cc",
"googlemock/src/gmock-all.cc",
"googletest/src/gtest-all.cc"
],
"public_header_files": "googletest/include/**/*.h",
"header_mappings_dir": "googletest/include",
"pod_target_xcconfig": {
"CLANG_CXX_LANGUAGE_STANDARD": "c++17",
"CLANG_CXX_LIBRARY": "libc++",
"HEADER_SEARCH_PATHS": "\"${PODS_ROOT}/GTestCpp/googletest\""
},
"libraries": "c++",
"prepare_command": "mkdir googletest/include/src && mv -v googletest/src/gtest-internal-inl.h googletest/include/src/gtest-internal-inl.h"
}