treewide: remove BUILD_TESTING flag

This is now set by CMake
This commit is contained in:
Matthew Bauer
2019-02-21 20:51:58 -05:00
parent 91f0c848f4
commit 6ed49262f5
19 changed files with 9 additions and 30 deletions

View File

@@ -10,7 +10,6 @@ let components = {
hpmc = true;
md = true;
metal = true;
testing = false;
};
onOffBool = b: if b then "ON" else "OFF";
withMPI = (mpi != null);
@@ -44,7 +43,6 @@ stdenv.mkDerivation rec {
"-DBUILD_HPMC=${onOffBool components.hpmc}"
"-DBUILD_MD=${onOffBool components.md}"
"-DBUILD_METAL=${onOffBool components.metal}"
"-DBUILD_TESTING=${onOffBool components.testing}"
];
preConfigure = ''