Exclude tests from build in library.json for PlatfomIO

This commit is contained in:
Christoph Honal 2021-12-19 19:23:30 +01:00
parent 12e7744b49
commit a0ce4cf48e

View File

@ -1,13 +1,19 @@
{ {
"version": "1.0.0",
"name": "tiny-AES-c", "name": "tiny-AES-c",
"keywords": "cryptography, aes", "keywords": "cryptography, aes",
"description": "Small portable AES128/192/256 in C", "description": "Small portable AES128/192/256 in C",
"repository": "repository":
{ {
"type": "git", "type": "git",
"branch": "master",
"url": "https://github.com/kokke/tiny-AES-c.git" "url": "https://github.com/kokke/tiny-AES-c.git"
}, },
"frameworks": "*", "frameworks": "*",
"platforms": "*", "platforms": "*",
"examples": "test.c" "examples": "test.c",
"build":
{
"srcFilter": "+<*> -<.git/> -<test.c> -<test.cpp> -<test_package/>"
}
} }