-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibrary.json
More file actions
34 lines (34 loc) · 1.04 KB
/
Copy pathlibrary.json
File metadata and controls
34 lines (34 loc) · 1.04 KB
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
{
"name": "ceedless",
"version": "0.5.0",
"description": "Lightweight unit-test framework for embedded C: Unity-style assertions, header-only mocks, exceptions, virtual peripherals, parametric & property-based tests, and pluggable trace transports (UART/RTT/ITM/semihosting).",
"keywords": ["unit-test", "testing", "tdd", "mocks", "embedded", "cortex-m", "stm32", "esp32"],
"homepage": "https://github.com/tevfik/ceedless",
"repository": {
"type": "git",
"url": "https://github.com/tevfik/ceedless.git"
},
"authors": [
{
"name": "Tevfik",
"url": "https://github.com/tevfik",
"maintainer": true
}
],
"license": "MIT",
"frameworks": "*",
"platforms": "*",
"headers": "ceedless/ceedless.h",
"build": {
"srcDir": "src",
"includeDir": "include",
"flags": [
"-DCEEDLESS_TRACE_HOST",
"-std=c11"
]
},
"examples": [
"examples/sensor_driver/*",
"examples/cortex_m/*"
]
}