treewide: remove enableParallelBuilding = true if using cmake

This commit is contained in:
Ben Siraphob
2021-01-03 16:43:56 +07:00
parent fb2311d430
commit 3ae5e6ce03
378 changed files with 15 additions and 724 deletions

View File

@@ -11,12 +11,7 @@ stdenv.mkDerivation {
nativeBuildInputs = [ cmake ];
enableParallelBuilding = true;
cmakeFlags = []
++ stdenv.lib.optional (stdenv.hostPlatform != stdenv.buildPlatform)
"-DMSGPACK_BUILD_EXAMPLES=OFF"
;
cmakeFlags = stdenv.lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) "-DMSGPACK_BUILD_EXAMPLES=OFF";
meta = with stdenv.lib; {
description = "MessagePack implementation for C and C++";