Skip to content

Commit

Permalink
Merge pull request #201 from StarGate01/fix/platformio-build
Browse files Browse the repository at this point in the history
Exclude tests from build in library.json for PlatformIO
  • Loading branch information
kokke committed Dec 22, 2021
2 parents 12e7744 + a0ce4cf commit f06ac37
Showing 1 changed file with 17 additions and 11 deletions.
28 changes: 17 additions & 11 deletions library.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
{
"name": "tiny-AES-c",
"keywords": "cryptography, aes",
"description": "Small portable AES128/192/256 in C",
"repository":
{
"type": "git",
"url": "https://github.com/kokke/tiny-AES-c.git"
},
"frameworks": "*",
"platforms": "*",
"examples": "test.c"
"version": "1.0.0",
"name": "tiny-AES-c",
"keywords": "cryptography, aes",
"description": "Small portable AES128/192/256 in C",
"repository":
{
"type": "git",
"branch": "master",
"url": "https://github.com/kokke/tiny-AES-c.git"
},
"frameworks": "*",
"platforms": "*",
"examples": "test.c",
"build":
{
"srcFilter": "+<*> -<.git/> -<test.c> -<test.cpp> -<test_package/>"
}
}

0 comments on commit f06ac37

Please sign in to comment.