Skip to content

Commit

Permalink
build: enable ccache by default under nix (#1976)
Browse files Browse the repository at this point in the history
  • Loading branch information
rprospero authored Sep 20, 2024
1 parent 0dd660a commit d6e7f37
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,6 @@
cmake-format
cmake-language-server
conan
distcc
direnv
gdb
gtk3
Expand Down Expand Up @@ -190,9 +189,9 @@
'';

CMAKE_CXX_COMPILER_LAUNCHER =
"${pkgs.ccache}/bin/ccache;${pkgs.distcc}/bin/distcc";
"${pkgs.ccache}/bin/ccache";
CMAKE_C_COMPILER_LAUNCHER =
"${pkgs.ccache}/bin/ccache;${pkgs.distcc}/bin/distcc";
"${pkgs.ccache}/bin/ccache";
CMAKE_CXX_FLAGS_DEBUG = "-g -O0";
CXXL = "${pkgs.stdenv.cc.cc.lib}";
Qt6Quick3D_DIR = "${pkgs.qt6.qtquick3d}/lib/";
Expand Down

0 comments on commit d6e7f37

Please sign in to comment.