From 4b636a5b62878707d8b566b6ca8fe6d58c6e1cec Mon Sep 17 00:00:00 2001 From: Jean Gautier Date: Wed, 10 Jun 2020 18:21:47 +0200 Subject: [PATCH] ORC_BUILD_JSON is now ON by defaut --- CMakeLists.txt | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f34cb9ed..336d3f17 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -13,7 +13,7 @@ option(ORC_BUILD_ORC "Build Orc binary" ON) option(ORC_BUILD_PARQUET "Build Parquet module" OFF) option(ORC_BUILD_SQL "Build SQL module" OFF) option(ORC_BUILD_SSDEEP "Build with ssdeep support" OFF) -option(ORC_BUILD_JSON "Build with JSON StructuredOutput enabled" OFF) +option(ORC_BUILD_JSON "Build with JSON StructuredOutput enabled" ON) if(NOT ORC_BUILD_COMMAND) set(ORC_BUILD_FASTFIND OFF) diff --git a/README.md b/README.md index 8d1d29e8..300f540e 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ Using default options is recommended with the exception of `ORC_BUILD_VCPKG` whi | ORC_BUILD_PARQUET | OFF | Build Parquet module (x64) | | ORC_BUILD_SQL | OFF | Build SQL module [1] | | ORC_BUILD_SSDEEP | OFF | Build with ssdeep support | -| ORC_BUILD_JSON | OFF | Build with JSON enabled | +| ORC_BUILD_JSON | ON | Build with JSON enabled | | ORC_USE_STATIC_CRT | ON | Use static runtime | | ORC_VCPKG_ROOT | ${ORC}/external/vcpkg | VCPKG root directory | | ORC_XMLLITE_PATH | | XmlLite.dll path (xp sp2) |