3
0
Fork 0
forked from mirrors/nixpkgs

Ogre: Build the samples.

svn path=/nixpkgs/trunk/; revision=33807
This commit is contained in:
Ludovic Courtès 2012-04-17 09:57:57 +00:00
parent a01828abd5
commit adb332af4c

View file

@ -15,8 +15,9 @@ stdenv.mkDerivation {
sha256 = "10q8jx842s4aws9py6q67rb4dh5vli5vvg54jl8manjb4f388jh5";
};
cmakeFlags =
(map (x: "-DOGRE_BUILD_PLUGIN_${x}=on") [ "BSP" "CG" "OCTREE" "PCZ" "PFX" ])
cmakeFlags = [ "-DOGRE_INSTALL_SAMPLES=yes" ]
++ (map (x: "-DOGRE_BUILD_PLUGIN_${x}=on")
[ "BSP" "CG" "OCTREE" "PCZ" "PFX" ])
++ (map (x: "-DOGRE_BUILD_RENDERSYSTEM_${x}=on") [ "GL" ]);
enableParallelBuilding = true;