Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/miloyip/rapidjson.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormiloyip <miloyip@gmail.com>2015-04-21 11:38:49 +0300
committermiloyip <miloyip@gmail.com>2015-04-21 11:38:49 +0300
commit5ab1e9361db34edfb228e6d7df81e1842ef7b4ab (patch)
tree920649ef0cbd3779fac88a6c0d1920d150526b78 /CMakeLists.txt
parent8d39282af507629575215de919189babd5d35f01 (diff)
Add version macros for RapidJSON
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 9c823ac3..94919f04 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -3,8 +3,8 @@ SET(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/CMakeModules)
PROJECT(RapidJSON CXX)
-set(LIB_MAJOR_VERSION "0")
-set(LIB_MINOR_VERSION "12")
+set(LIB_MAJOR_VERSION "1")
+set(LIB_MINOR_VERSION "0")
set(LIB_PATCH_VERSION "0")
set(LIB_VERSION_STRING "${LIB_MAJOR_VERSION}.${LIB_MINOR_VERSION}.${LIB_PATCH_VERSION}")