File tree Expand file tree Collapse file tree 3 files changed +9
-0
lines changed
Expand file tree Collapse file tree 3 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -55,6 +55,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
5555* Fix a bug in schema minimum/maximum keywords for 64-bit integer (e7149d665941068ccf8c565e77495521331cf390)
5656* Fix a crash bug in regex (#605 )
5757* Fix schema "required" keyword cannot handle duplicated keys (#609 )
58+ * Fix cmake CMP0054 warning (#612 )
5859
5960### Changed
6061* Clarify problematic JSON license (#392 )
Original file line number Diff line number Diff line change 11CMAKE_MINIMUM_REQUIRED (VERSION 2.8)
2+ if (POLICY CMP0054)
3+ cmake_policy (SET CMP0054 NEW)
4+ endif ()
5+
26SET (CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR} /CMakeModules)
37
48PROJECT (RapidJSON CXX)
Original file line number Diff line number Diff line change 11cmake_minimum_required (VERSION 2.8)
22
3+ if (POLICY CMP0054)
4+ cmake_policy (SET CMP0054 NEW)
5+ endif ()
6+
37set (EXAMPLES
48 capitalize
59 condense
You can’t perform that action at this time.
0 commit comments