Commit 36a51073 authored by Adkins, Cameron's avatar Adkins, Cameron
Browse files

pcl: compile with vtk-qt

PCL now uses VTK compiled with Qt6 support.
parent bf920311
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@
, qhull
, flann
, boost
, vtk
, vtk-qt
, eigen
, pkg-config
, qtbase
@@ -61,7 +61,7 @@ stdenv.mkDerivation rec {
    libpng
    libtiff
    qhull
    vtk
    vtk-qt
  ];

  cmakeFlags = lib.optionals stdenv.hostPlatform.isDarwin [
+2 −1
Original line number Diff line number Diff line
@@ -22533,7 +22533,8 @@ with pkgs;
  pcg_c = callPackage ../development/libraries/pcg-c { };
  pcl = libsForQt5.callPackage ../development/libraries/pcl {
  pcl = qt6Packages.callPackage ../development/libraries/pcl {
    vtk-qt = vtk_926-qt;
    stdenv = if stdenv.hostPlatform.isDarwin then darwin.apple_sdk_11_0.stdenv else stdenv;
    inherit (darwin.apple_sdk_11_0.frameworks) Cocoa AGL OpenGL;
  };