We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2de1802 commit e8378d1Copy full SHA for e8378d1
README.md
@@ -38,12 +38,14 @@ First, install both meson (which requires Python3) and ninja.
38
Then,
39
40
cd jsoncpp/
41
- BUILD_TYPE=shared
42
- #BUILD_TYPE=static
43
- LIB_TYPE=debug
44
- #LIB_TYPE=release
+ BUILD_TYPE=debug
+ #BUILD_TYPE=release
+ LIB_TYPE=shared
+ #LIB_TYPE=static
45
meson --buildtype ${BUILD_TYPE} --default-library ${LIB_TYPE} . build-${LIB_TYPE}
46
ninja -v -C build-${LIB_TYPE} test
47
+ cd build-${LIB_TYPE}
48
+ sudo ninja install
49
50
### Building and testing with other build systems
51
See https://github.com/open-source-parsers/jsoncpp/wiki/Building
0 commit comments