From b90cf4e7ff7acd0e0369ca063ede7d1cfd5ce958 Mon Sep 17 00:00:00 2001 From: Azat Khuzhin Date: Mon, 31 Jan 2022 10:29:00 +0300 Subject: [PATCH] Move cmake/find/ccache.cmake -> cmake/ccache.cmake Signed-off-by: Azat Khuzhin --- CMakeLists.txt | 2 +- cmake/{find => }/ccache.cmake | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename cmake/{find => }/ccache.cmake (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3c846cdd51e..08ccfef3324 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -67,7 +67,7 @@ if (EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/.git" AND NOT EXISTS "${ClickHouse_SOURC message (FATAL_ERROR "Submodules are not initialized. Run\n\tgit submodule update --init --recursive") endif () -include (cmake/find/ccache.cmake) +include (cmake/ccache.cmake) # Take care to add prlimit in command line before ccache, or else ccache thinks that # prlimit is compiler, and clang++ is its input file, and refuses to work with diff --git a/cmake/find/ccache.cmake b/cmake/ccache.cmake similarity index 100% rename from cmake/find/ccache.cmake rename to cmake/ccache.cmake