mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-09 17:14:47 +00:00
Use ninja instead of make by default if it is available [#CLICKHOUSE-2]
This commit is contained in:
parent
f483e4cb05
commit
370545d6c2
6
PreLoad.cmake
Normal file
6
PreLoad.cmake
Normal file
@ -0,0 +1,6 @@
|
||||
# Use Ninja instead of Unix Makefiles by default.
|
||||
|
||||
find_program(NINJA_PATH ninja)
|
||||
if (NINJA_PATH)
|
||||
set(CMAKE_GENERATOR "Ninja")
|
||||
endif ()
|
Loading…
Reference in New Issue
Block a user