Skip to content

Commit f06ac37

Browse files
authored
Merge pull request kokke#201 from StarGate01/fix/platformio-build
Exclude tests from build in library.json for PlatformIO
2 parents 12e7744 + a0ce4cf commit f06ac37

File tree

1 file changed

+17
-11
lines changed

1 file changed

+17
-11
lines changed

library.json

+17-11
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,19 @@
11
{
2-
"name": "tiny-AES-c",
3-
"keywords": "cryptography, aes",
4-
"description": "Small portable AES128/192/256 in C",
5-
"repository":
6-
{
7-
"type": "git",
8-
"url": "https://github.com/kokke/tiny-AES-c.git"
9-
},
10-
"frameworks": "*",
11-
"platforms": "*",
12-
"examples": "test.c"
2+
"version": "1.0.0",
3+
"name": "tiny-AES-c",
4+
"keywords": "cryptography, aes",
5+
"description": "Small portable AES128/192/256 in C",
6+
"repository":
7+
{
8+
"type": "git",
9+
"branch": "master",
10+
"url": "https://github.com/kokke/tiny-AES-c.git"
11+
},
12+
"frameworks": "*",
13+
"platforms": "*",
14+
"examples": "test.c",
15+
"build":
16+
{
17+
"srcFilter": "+<*> -<.git/> -<test.c> -<test.cpp> -<test_package/>"
18+
}
1319
}

0 commit comments

Comments
 (0)