File tree 4 files changed +7
-7
lines changed
4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -59,12 +59,12 @@ ENDMACRO()
59
59
#SET( JSONCPP_VERSION_MAJOR X )
60
60
#SET( JSONCPP_VERSION_MINOR Y )
61
61
#SET( JSONCPP_VERSION_PATCH Z )
62
- SET ( JSONCPP_VERSION 1.8.2 )
62
+ SET ( JSONCPP_VERSION 1.8.3 )
63
63
jsoncpp_parse_version( ${JSONCPP_VERSION} JSONCPP_VERSION )
64
64
#IF(NOT JSONCPP_VERSION_FOUND)
65
65
# MESSAGE(FATAL_ERROR "Failed to parse version string properly. Expect X.Y.Z")
66
66
#ENDIF(NOT JSONCPP_VERSION_FOUND)
67
- SET ( JSONCPP_SOVERSION 11 )
67
+ SET ( JSONCPP_SOVERSION 19 )
68
68
SET ( JSONCPP_USE_SECURE_MEMORY "0" CACHE STRING "-D...=1 to use memory-wiping allocator for STL" )
69
69
70
70
MESSAGE (STATUS "JsonCpp Version: ${JSONCPP_VERSION_MAJOR} .${JSONCPP_VERSION_MINOR} .${JSONCPP_VERSION_PATCH} " )
Original file line number Diff line number Diff line change 3
3
#ifndef JSON_VERSION_H_INCLUDED
4
4
# define JSON_VERSION_H_INCLUDED
5
5
6
- # define JSONCPP_VERSION_STRING "1.8.2 "
6
+ # define JSONCPP_VERSION_STRING "1.8.3 "
7
7
# define JSONCPP_VERSION_MAJOR 1
8
8
# define JSONCPP_VERSION_MINOR 8
9
- # define JSONCPP_VERSION_PATCH 2
9
+ # define JSONCPP_VERSION_PATCH 3
10
10
# define JSONCPP_VERSION_QUALIFIER
11
11
# define JSONCPP_VERSION_HEXA ((JSONCPP_VERSION_MAJOR << 24) | (JSONCPP_VERSION_MINOR << 16) | (JSONCPP_VERSION_PATCH << 8))
12
12
Original file line number Diff line number Diff line change 1
1
project (
2
2
' jsoncpp' ,
3
3
' cpp' ,
4
- version : ' 1.8.2 ' ,
4
+ version : ' 1.8.3 ' ,
5
5
default_options : [
6
6
' buildtype=release' ,
7
7
' warning_level=1' ],
@@ -52,7 +52,7 @@ jsoncpp_lib = library(
52
52
' src/lib_json/json_reader.cpp' ,
53
53
' src/lib_json/json_value.cpp' ,
54
54
' src/lib_json/json_writer.cpp' ],
55
- soversion : 18 ,
55
+ soversion : 19 ,
56
56
install : true ,
57
57
include_directories : jsoncpp_include_directories)
58
58
Original file line number Diff line number Diff line change 1
- 1.8.2
1
+ 1.8.3
You can’t perform that action at this time.
0 commit comments