Merge pull request #19004 from nico202/fix-gazebo-cmake

gazebo7: Fix gazebo-config.cmake output file
This commit is contained in:
Joachim F 2016-09-27 16:32:32 +02:00 committed by GitHub
commit 19d3b1aa5f

View File

@ -31,7 +31,9 @@ stdenv.mkDerivation rec {
};
enableParallelBuilding = true; # gazebo needs this so bad
cmakeFlags = []
cmakeFlags = [
"-DCMAKE_INSTALL_LIBDIR:PATH=lib"
"-DCMAKE_INSTALL_INCLUDEDIR=include" ]
++ optional withQuickBuild [ "-DENABLE_TESTS_COMPILATION=False" ]
++ optional withLowMemorySupport [ "-DUSE_LOW_MEMORY_TESTS=True" ]
++ optional withHeadless [ "-DENABLE_SCREEN_TESTS=False" ];