You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -34,42 +31,63 @@ format to store user input files.
34
31
* Major versions maintain binary-compatibility.
35
32
36
33
### Special note
37
-
The branch `00.11.z`is a new branch, its major version number `00` is to show that it is
38
-
different from `0.y.z` and `1.y.z`, the main purpose of this branch is to make a balance
39
-
between the other two branches. Thus, users can use some new features in this new branch
40
-
that introduced in 1.y.z, but can hardly applied into 0.y.z.
34
+
35
+
The branch `00.11.z`is a new branch, its major version number `00` is to show
36
+
that it is different from `0.y.z` and `1.y.z`, the main purpose of this branch
37
+
is to make a balance between the other two branches. Thus, users can use some
38
+
new features in this new branch that introduced in 1.y.z, but can hardly applied
39
+
into 0.y.z.
41
40
42
41
## Using JsonCpp in your project
43
42
44
43
### The vcpkg dependency manager
45
-
You can download and install JsonCpp using the [vcpkg](https://github.com/Microsoft/vcpkg/) dependency manager:
46
44
45
+
You can download and install JsonCpp using the [vcpkg](https://github.com/Microsoft/vcpkg/)
46
+
dependency manager:
47
+
48
+
```sh
47
49
git clone https://github.com/Microsoft/vcpkg.git
48
50
cd vcpkg
49
51
./bootstrap-vcpkg.sh
50
52
./vcpkg integrate install
51
53
./vcpkg install jsoncpp
54
+
```
52
55
53
-
The JsonCpp port in vcpkg is kept up to date by Microsoft team members and community contributors. If the version is out of date, please [create an issue or pull request](https://github.com/Microsoft/vcpkg) on the vcpkg repository.
56
+
The JsonCpp port in vcpkg is kept up to date by Microsoft team members and
57
+
community contributors. If the version is out of date, please [create an issue or pull request](https://github.com/Microsoft/vcpkg)
58
+
on the vcpkg repository.
54
59
55
60
### Conan package manager
56
61
57
-
You can download and install JsonCpp using the [Conan](https://conan.io/) package manager:
62
+
You can download and install JsonCpp using the [Conan](https://conan.io/)
The JsonCpp package in Conan Center is kept up to date by [ConanCenterIndex](https://github.com/conan-io/conan-center-index) contributors. If the version is out of date, please create an issue or pull request on the Conan Center Index repository.
69
+
The JsonCpp package in Conan Center is kept up to date by [ConanCenterIndex](https://github.com/conan-io/conan-center-index)
70
+
contributors. If the version is out of date, please create an issue or pull request on the
See the [Wiki entry on Amalgamated Source](https://github.com/open-source-parsers/jsoncpp/wiki/Amalgamated-(Possibly-outdated)).
65
76
66
77
### The Meson Build System
67
-
If you are using the [Meson Build System](http://mesonbuild.com), then you can get a wrap file by downloading it from [Meson WrapDB](https://wrapdb.mesonbuild.com/jsoncpp), or simply use `meson wrap install jsoncpp`.
78
+
79
+
If you are using the [Meson Build System](http://mesonbuild.com), then you can
80
+
get a wrap file by downloading it from [Meson WrapDB](https://mesonbuild.com/Wrapdb-projects.html),
81
+
or simply use `meson wrap install jsoncpp`.
68
82
69
83
### Other ways
70
-
If you have trouble, see the [Wiki](https://github.com/open-source-parsers/jsoncpp/wiki), or post a question as an Issue.
84
+
85
+
If you have trouble, see the
86
+
[Wiki](https://github.com/open-source-parsers/jsoncpp/wiki), or post a question
87
+
as an Issue.
71
88
72
89
## License
73
90
74
-
See the `LICENSE` file for details. In summary, JsonCpp is licensed under the
75
-
MIT license, or public domain if desired and recognized in your jurisdiction.
91
+
See the [LICENSE](./LICENSE) file for details. In summary, JsonCpp is licensed
92
+
under the MIT license, or public domain if desired and recognized in your
0 commit comments