-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathlibrary.json
More file actions
36 lines (36 loc) · 816 Bytes
/
library.json
File metadata and controls
36 lines (36 loc) · 816 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "optional-lite",
"version": "3.6.0",
"keywords": "std, nonstd, optional, header",
"description": "A single-file header-only version of a C++17-like optional, a nullable object for C++98, C++11 and later",
"license": "BSL-1.0",
"repository":
{
"type": "git",
"url": "https://github.com/martinmoene/optional-lite.git"
},
"authors":
[
{
"name": "Martin Moene",
"maintainer": true
}
],
"build":
{
"srcFilter":
[
"+<include/nonstd/optional.hpp>"
]
},
"examples":
[
{
"name": "Text to optional of int",
"base": "example",
"files": ["01-to_int.cpp"]
}
],
"frameworks": "*",
"platforms": "*"
}