-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibrary.json
More file actions
48 lines (48 loc) · 919 Bytes
/
Copy pathlibrary.json
File metadata and controls
48 lines (48 loc) · 919 Bytes
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
{
"name": "Testrunner",
"version": "2.0.0",
"repository":
{
"type": "git",
"url": "https://github.com/gnilk/testrunner.git"
},
"platforms" : "*",
"frameworks" : "*",
"export" : {
"include" : [
"CMakeLists.txt",
"library.json",
"src/*"
]
},
"header" : [
"testinterface.h",
"trunembedded.h"
],
"build" : {
"flags": [
"-std=c++17",
"-DTRUN_EMBEDDED_MCU",
"-DTRUN_SINGLE_THREAD",
"-Isrc/testrunner/embedded"
],
"unflags" : "-std=gnu++11",
"libArchive": true,
"srcDir" : "src/testrunner",
"srcFilter" : [
"+<*>",
"-<tests/>",
"-<reporting/>",
"-<ipc/>",
"-<ext_testinterface/>",
"-<unix/>",
"-<win32/>",
"-<main.cpp>",
"+<reporting/reportconsole.cpp>",
"+<reporting/reportingbase.cpp>"
],
"includeDir" : "src/"
},
"dependencies": [
]
}