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 2b1e47b commit b567942Copy full SHA for b567942
CMakeLists.txt
@@ -4,6 +4,11 @@
4
# begin basic metadata
5
cmake_minimum_required(VERSION 3.12)
6
7
+find_program(CCACHE_PROGRAM ccache)
8
+if(CCACHE_PROGRAM)
9
+ set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE "${CCACHE_PROGRAM}")
10
+endif()
11
+
12
project(dengr VERSION 0.0.0 LANGUAGES CXX)
13
14
# set the C++ standard to use to C++20 always
0 commit comments