Skip to content

Commit

Permalink
add PlatformIO library.json
Browse files Browse the repository at this point in the history
  • Loading branch information
ardnew committed Jan 20, 2024
1 parent d674f5d commit 7a586de
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 2 deletions.
26 changes: 26 additions & 0 deletions library.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"name": "cronos",
"keywords": "timer, chrono, std, std::chrono, tick, ticks, uptime, clock, c++17, constexpr, library",
"description": "A std::chrono wrapper for target system's native tick count.",
"homepage": "https://github.com/ardnew/cronos",
"authors": [
{
"name": "ardnew",
"email": "andrew@ardnew.com",
"url": "https://github.com/ardnew",
"maintainer": "true"
}
],
"repository": {
"type": "git",
"url": "https://github.com/ardnew/cronos.git"
},
"license": "MIT",
"version": "0.1.4",
"headers": [
"cronos.hpp"
],
"build": {
"flags": "-std=c++17"
}
}
4 changes: 2 additions & 2 deletions library.properties
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name=cronos
version=0.1.3
version=0.1.4
author=ardnew
maintainer=ardnew (andrew@ardnew.com)
sentence=A std::chrono wrapper for target system's native tick count.
paragraph=This abstraction allows applications to hide the exact data type representation and period of the system's native ticker, which provides a consistent interface for specifying delays, timeouts, etc., regardless of the target system.
category=Timing
url=https://github.com/ardnew/cronos
architectures=*
includes=cronos.h
includes=cronos.hpp
File renamed without changes.

0 comments on commit 7a586de

Please sign in to comment.