From 2abfc5dfa31c080911a61e49494aee1006978c10 Mon Sep 17 00:00:00 2001 From: Ludovic J Date: Mon, 15 Jun 2020 19:58:01 +0200 Subject: [PATCH] Do not use system RapidJSON by default --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5ffe0e68..ef4254cb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.8) project(ccls LANGUAGES CXX) -option(USE_SYSTEM_RAPIDJSON "Use system RapidJSON instead of the git submodule if exists" ON) +option(USE_SYSTEM_RAPIDJSON "Use system RapidJSON instead of the git submodule if exists" OFF) # Sources for the executable are specified at end of CMakeLists.txt add_executable(ccls "")