Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pcl] Add feature apps, visualization, simulation, examples and add usage #21788

Merged
merged 8 commits into from
Dec 17, 2021
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 13 additions & 10 deletions ports/pcl/portfile.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,19 @@ endif()

vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
FEATURES
openni2 WITH_OPENNI2
qt WITH_QT
pcap WITH_PCAP
cuda WITH_CUDA
cuda BUILD_CUDA
cuda BUILD_GPU
tools BUILD_tools
opengl WITH_OPENGL
vtk WITH_VTK
libusb WITH_LIBUSB
openni2 WITH_OPENNI2
qt WITH_QT
pcap WITH_PCAP
cuda WITH_CUDA
cuda BUILD_CUDA
cuda BUILD_GPU
tools BUILD_tools
opengl WITH_OPENGL
vtk WITH_VTK
libusb WITH_LIBUSB
visualization BUILD_visualization
examples BUILD_examples
apps BUILD_apps
)

vcpkg_cmake_configure(
Expand Down
34 changes: 33 additions & 1 deletion ports/pcl/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "pcl",
"version": "1.12.0",
"port-version": 1,
"port-version": 2,
"description": "Point Cloud Library (PCL) is open source library for 2D/3D image and point cloud processing.",
"homepage": "https://github.com/PointCloudLibrary/pcl",
"supports": "!(arm64 & windows)",
Expand Down Expand Up @@ -37,12 +37,32 @@
}
],
"features": {
"apps": {
"description": "Build application examples/samples that show how PCL works",
"dependencies": [
{
"name": "pcl",
"default-features": false,
"features": [
"openni2",
"qt",
"vtk"
]
}
]
},
"cuda": {
"description": "CUDA support for PCL",
"dependencies": [
"cuda"
]
},
"examples": {
"description": "Build PCL examples",
"dependencies": [
"vtk"
]
},
"libusb": {
"description": "Build USB RGBD-Camera drivers",
"dependencies": [
Expand Down Expand Up @@ -96,6 +116,18 @@
"boost-accumulators"
]
},
"visualization": {
"description": "Build visualization",
"dependencies": [
{
"name": "pcl",
"default-features": false,
"features": [
"vtk"
]
}
]
},
"vtk": {
JackBoosY marked this conversation as resolved.
Show resolved Hide resolved
"description": "VTK-Visualizations support for PCL",
"dependencies": [
Expand Down
2 changes: 1 addition & 1 deletion versions/baseline.json
Original file line number Diff line number Diff line change
Expand Up @@ -5170,7 +5170,7 @@
},
"pcl": {
"baseline": "1.12.0",
"port-version": 1
"port-version": 2
},
"pcre": {
"baseline": "8.45",
Expand Down
5 changes: 5 additions & 0 deletions versions/p-/pcl.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{
"versions": [
{
"git-tree": "0e7d2fa0146bc28447830bfddd62c601ec50b6f9",
"version": "1.12.0",
"port-version": 2
},
{
"git-tree": "a2eb47fa4d7f959d9c8712f0d0925c2af94bcc80",
"version": "1.12.0",
Expand Down