-
Notifications
You must be signed in to change notification settings - Fork 17
/
cupcake.json
109 lines (109 loc) · 1.8 KB
/
cupcake.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"project": {
"name": "autocheck",
"version": "1.1.1"
},
"libraries": [
{
"name": "autocheck"
}
],
"imports": [
{
"name": "catch2",
"version": "3.6.0",
"reference": "catch2/3.6.0",
"file": "Catch2",
"targets": [
"Catch2::Catch2",
"Catch2::Catch2WithMain"
],
"groups": [
"test"
]
},
{
"name": "gtest",
"version": "1.14.0",
"reference": "gtest/1.14.0",
"file": "GTest",
"targets": [
"GTest::gtest_main",
"GTest::gtest"
],
"groups": [
"test"
]
}
],
"tests": [
{
"name": "arbitrary",
"links": [
"autocheck.library",
"GTest::gtest_main"
]
},
{
"name": "check",
"links": [
"autocheck.library",
"GTest::gtest_main"
]
},
{
"name": "generator_combinators",
"links": [
"autocheck.library",
"GTest::gtest_main"
]
},
{
"name": "generator",
"links": [
"autocheck.library",
"GTest::gtest_main"
]
},
{
"name": "is_one_of",
"links": [
"autocheck.library",
"GTest::gtest_main"
]
},
{
"name": "largest",
"links": [
"autocheck.library",
"GTest::gtest_main"
]
},
{
"name": "value",
"links": [
"autocheck.library",
"GTest::gtest_main"
]
},
{
"name": "reverse",
"links": [
"${PROJECT_NAME}.library"
]
},
{
"name": "insert-sorted",
"links": [
"${PROJECT_NAME}.library"
]
},
{
"name": "factorial",
"links": [
"${PROJECT_NAME}.library",
"Catch2::Catch2WithMain"
]
}
]
}