
* Use rapidyaml library to parse YAML databases instead of yaml-cpp. * Drastically reduces the parse time for yaml databases. * Removes yaml-cpp content from main servers, except for tool emitter. Co-authored-by: Vincent Stumpf <vincents.995@gmail.com> Co-authored-by: Atemo <capucrath@gmail.com> Co-authored-by: Lemongrass3110 <lemongrass@kstp.at> Co-authored-by: Aleos <aleos89@users.noreply.github.com>
12 lines
336 B
CMake
12 lines
336 B
CMake
|
|
# old gcc-4.8 support
|
|
if((CMAKE_CXX_COMPILER_ID STREQUAL "GNU") AND
|
|
(CMAKE_CXX_COMPILER_VERSION VERSION_GREATER_EQUAL 4.8) AND
|
|
(CMAKE_CXX_COMPILER_VERSION VERSION_LESS 5.0))
|
|
|
|
# c++17 compiler required
|
|
set(C4RYML_BUILD_BENCHMARKS OFF CACHE BOOL "" FORCE)
|
|
# LLVM required
|
|
set(C4RYML_SANITIZE OFF CACHE BOOL "" FORCE)
|
|
endif()
|