From 521863e195f083258c81a76dcc2f28d82504cf19 Mon Sep 17 00:00:00 2001 From: Las Safin Date: Wed, 1 Sep 2021 17:39:00 +0000 Subject: [PATCH] Use OpenMP --- nix/coloquinte.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nix/coloquinte.nix b/nix/coloquinte.nix index b3748290..6ef37f7b 100644 --- a/nix/coloquinte.nix +++ b/nix/coloquinte.nix @@ -12,5 +12,7 @@ stdenv.mkDerivation { buildInputs = [ boostWithPython coriolis-bootstrap qt4 ]; nativeBuildInputs = [ cmake ninja doxygen ]; + cmakeFlags = [ "-DWITH_OPENMP:STRING=TRUE" ]; + inherit version meta; }