Change the default value of USE_LIBCXX to FALSE

By default clang is already using the system
standard library. Therefore it is unexpected
that chaiscript always uses libcxx if clang
is used.
This commit is contained in:
Bernd Amend 2021-05-22 14:54:23 +02:00
parent 816cb5e8e2
commit c580726020

View File

@ -189,7 +189,7 @@ else()
endif()
if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
option(USE_LIBCXX "Use clang's libcxx" TRUE)
option(USE_LIBCXX "Use clang's libcxx" FALSE)
if(USE_LIBCXX)
add_definitions(-stdlib=libc++)