We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e50e9fd commit faa9122Copy full SHA for faa9122
CMakeLists.txt
@@ -2,6 +2,11 @@
2
# minimum CMake version required for C++20 support, among other things
3
cmake_minimum_required(VERSION 3.12)
4
5
+find_program(CCACHE_PROGRAM ccache)
6
+if(CCACHE_PROGRAM)
7
+ set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE "${CCACHE_PROGRAM}")
8
+endif()
9
+
10
project(proj VERSION 0.0.0 LANGUAGES CXX)
11
12
# set the C++ standard to use to C++20 always
0 commit comments