Skip to content

Commit

Permalink
Install pcl through vcpkg
Browse files Browse the repository at this point in the history
  • Loading branch information
cwidisgroup committed Feb 23, 2024
1 parent befc3c5 commit d215d9c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cwipc_util
Submodule cwipc_util updated 1 files
+1 −1 src/CMakeLists.txt
5 changes: 4 additions & 1 deletion scripts/install-3rdparty-full-win1064.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,10 @@ if(Can-Execute-From-Path("jpegtran -help")) {
# Install PCL 1.13
#
$ok = Can-Execute-From-Path("pcl_generate -help")
if($ok) {
$skip_pcl = 1
if($skip_pcl) {
Write-Output: "pcl: skipped"
} elsif($ok) {
Write-Output "pcl: already installed"
} else {
Write-Output "pcl: downloading..."
Expand Down
5 changes: 4 additions & 1 deletion vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
{
"name": "cwipc",
"version": "7.5.0"
"version": "7.5.0",
"dependencies": [
"pcl"
]
}

0 comments on commit d215d9c

Please sign in to comment.