mirror of
https://github.com/nlohmann/json
synced 2024-11-09 22:20:05 +00:00
🔊 add message if implicit conversions are switched off
This commit is contained in:
parent
f9b71afebf
commit
fb22233f34
@ -24,7 +24,7 @@ endif ()
|
||||
option(JSON_BuildTests "Build the unit tests when BUILD_TESTING is enabled." ON)
|
||||
option(JSON_Install "Install CMake targets during install step." ON)
|
||||
option(JSON_MultipleHeaders "Use non-amalgamated version of the library." OFF)
|
||||
option(JSON_ImplicitConversions "Enable implicit conversions" ON)
|
||||
option(JSON_ImplicitConversions "Enable implicit conversions." ON)
|
||||
|
||||
##
|
||||
## CONFIGURATION
|
||||
@ -49,6 +49,10 @@ else()
|
||||
message(STATUS "Using the single-header code from ${NLOHMANN_JSON_INCLUDE_BUILD_DIR}")
|
||||
endif()
|
||||
|
||||
if (NOT JSON_ImplicitConversions)
|
||||
message(STATUS "Implicit conversions are disabled")
|
||||
endif()
|
||||
|
||||
##
|
||||
## TARGET
|
||||
## create target and add include path
|
||||
|
Loading…
Reference in New Issue
Block a user