lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

lucenepp: Build with C++14 instead of C++11.

This allows use of newer versions of gtest.

+3
+3
pkgs/development/libraries/lucene++/default.nix
··· 29 29 }) 30 30 ]; 31 31 32 + # Don't use the built in gtest - but the nixpkgs one requires C++14. 32 33 postPatch = '' 33 34 substituteInPlace src/test/CMakeLists.txt \ 34 35 --replace "add_subdirectory(gtest)" "" 36 + substituteInPlace CMakeLists.txt \ 37 + --replace "set(CMAKE_CXX_STANDARD 11)" "set(CMAKE_CXX_STANDARD 14)" 35 38 ''; 36 39 37 40 doCheck = true;