From 6631bbc13b9750a02a24ce3af53c7263c0c175d7 Mon Sep 17 00:00:00 2001 From: Alexey Milovidov Date: Fri, 8 Jun 2018 19:09:50 +0300 Subject: [PATCH] Use ninja instead of make by default if it is available [#CLICKHOUSE-2] --- PreLoad.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PreLoad.cmake b/PreLoad.cmake index dadaeb60a86..b8e14c1cc51 100644 --- a/PreLoad.cmake +++ b/PreLoad.cmake @@ -9,5 +9,5 @@ find_program(NINJA_PATH ninja) if (NINJA_PATH) - set(CMAKE_GENERATOR "Ninja") + set(CMAKE_GENERATOR "Ninja" CACHE INTERNAL "" FORCE) endif ()