File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 88# Official repository: https://github.com/boostorg/json
99#
1010
11- cmake_minimum_required (VERSION 3.15 ...3.16)
11+ cmake_minimum_required (VERSION 3.14 ...3.16)
1212
1313set (BOOST_JSON_VERSION 2)
1414if (BOOST_SUPERPROJECT_VERSION)
Original file line number Diff line number Diff line change @@ -61,7 +61,9 @@ target_compile_definitions(boost_json-no_exceptions PRIVATE
6161 BOOST_JSON_NO_LIB=1
6262)
6363target_compile_options (boost_json-no_exceptions PRIVATE
64- $<$<CXX_COMPILER_ID:GNU,Clang,AppleClang>:-fno-exceptions>
64+ $<$<CXX_COMPILER_ID:GNU>:-fno-exceptions>
65+ $<$<CXX_COMPILER_ID:Clang>:-fno-exceptions>
66+ $<$<CXX_COMPILER_ID:AppleClang>:-fno-exceptions>
6567 $<$<CXX_COMPILER_ID:MSVC >:/wd4530>
6668 $<$<CXX_COMPILER_ID:MSVC >:/wd4577>
6769)
You can’t perform that action at this time.
0 commit comments