aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWaluigiWare64 <68647953+WaluigiWare64@users.noreply.github.com>2021-07-22 16:58:59 +0100
committerWaluigiWare64 <68647953+WaluigiWare64@users.noreply.github.com>2021-07-22 16:58:59 +0100
commit89875204dd4bac1efd321763660ac891e630a32e (patch)
tree638a71e03f56c393a0f33aa7e6ce576fce98466b
parent9b5d5f673c31b020f22f58cde5a9729136086d57 (diff)
Add message when CCache is being used
-rw-r--r--CMakeLists.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index eed3a89..8f89c31 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -123,6 +123,7 @@ endif()
find_program(CCACHE "ccache")
if (CCACHE)
+ message(STATUS "Using CCache to speed up compilation")
set(CMAKE_C_COMPILER_LAUNCHER ${CCACHE})
set(CMAKE_CXX_COMPILER_LAUNCHER ${CCACHE})
endif()