Skip to content

Commit

Permalink
Revert PCL to 1.13 for now
Browse files Browse the repository at this point in the history
  • Loading branch information
jackjansen committed Mar 7, 2024
1 parent af60549 commit 810ce91
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scripts/install-3rdparty-full-win1064.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -106,12 +106,12 @@ if($ok) {
Write-Output "pcl: already installed"
} else {
Write-Output "pcl: downloading..."
$installer="$tmpinstalldir\PCL-1.14.0-AllInOne-msvc2022-win64.exe"
(New-Object System.Net.WebClient).DownloadFile("https://github.com/PointCloudLibrary/pcl/releases/download/pcl-1.14.0/PCL-1.14.0-AllInOne-msvc2022-win64.exe",$installer);
$installer="$tmpinstalldir\PCL-1.13.0-AllInOne-msvc2022-win64.exe"
(New-Object System.Net.WebClient).DownloadFile("https://github.com/PointCloudLibrary/pcl/releases/download/pcl-1.13.0/PCL-1.13.0-AllInOne-msvc2022-win64.exe",$installer);
Write-Output "pcl: installing..."
Start-Process -FilePath $installer -ArgumentList "/S" -Wait
Add-PathVariable("C:\Program Files\PCL 1.14.0\bin")
Add-PathVariable("C:\Program Files\PCL 1.14.0\3rdParty\VTK\bin")
Add-PathVariable("C:\Program Files\PCL 1.13.0\bin")
Add-PathVariable("C:\Program Files\PCL 1.13.0\3rdParty\VTK\bin")
Add-PathVariable("C:\Program Files\OpenNI2\Redist")
Write-Output "pcl: installed"
}
Expand Down

0 comments on commit 810ce91

Please sign in to comment.