Merge pull request #201 from StarGate01/fix/platformio-build

Exclude tests from build in library.json for PlatformIO
This commit is contained in:
kokke 2021-12-22 09:16:09 +01:00 committed by GitHub
commit f06ac37fc3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 17 additions and 11 deletions

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/>"
}
} }