mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 03:39:06 +08:00
21c801ea47
* updated rtabmap port * Update vcpkg.json * Addressing review comments, fixed missing deployed qt plugins, fixed CI error * applied format-manifest * ran x-add-version * Making octomap dependency optional because it doesn't work for debug build (see https://github.com/introlab/rtabmap/issues/995) * updated upstream version, fixed debug config * updated versions * fixing version * Added explicit depedency to qtbase. Added optional dependencies openni2, realsense2, k4w2 * Updated versions * Updated versions * cleanup versions * cleanup all versions * Applying format.diff from ci * overwrite version * qtbase: not using defaults * updated versions sha * added --trace-expand * Explicitly set autouic to OFF * Update rtabmap.json * removing cmake trace debug * updated versions --------- Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
136 lines
2.8 KiB
JSON
136 lines
2.8 KiB
JSON
{
|
|
"name": "rtabmap",
|
|
"version": "0.21.0",
|
|
"description": "Real-Time Appearance-Based Mapping",
|
|
"homepage": "https://introlab.github.io/rtabmap/",
|
|
"license": "BSD-3-Clause",
|
|
"supports": "windows & !static",
|
|
"dependencies": [
|
|
"ceres",
|
|
"g2o",
|
|
{
|
|
"name": "opencv",
|
|
"default-features": false
|
|
},
|
|
{
|
|
"name": "pcl",
|
|
"default-features": false,
|
|
"features": [
|
|
"vtk"
|
|
]
|
|
},
|
|
"sqlite3",
|
|
{
|
|
"name": "vcpkg-cmake",
|
|
"host": true
|
|
},
|
|
{
|
|
"name": "vcpkg-cmake-config",
|
|
"host": true
|
|
},
|
|
"zlib"
|
|
],
|
|
"default-features": [
|
|
"gui",
|
|
"opencv-contrib",
|
|
"opencv-nonfree",
|
|
"tools"
|
|
],
|
|
"features": {
|
|
"gui": {
|
|
"description": "Build RTAB-Map with GUI support (Qt)",
|
|
"dependencies": [
|
|
{
|
|
"name": "pcl",
|
|
"default-features": false,
|
|
"features": [
|
|
"qt"
|
|
]
|
|
},
|
|
{
|
|
"name": "qtbase",
|
|
"default-features": false,
|
|
"features": [
|
|
"gui",
|
|
"opengl",
|
|
"widgets"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"k4w2": {
|
|
"description": "Build RTAB-Map with Kinect For Windows SDK 2.0 camera driver",
|
|
"dependencies": [
|
|
"kinectsdk2"
|
|
]
|
|
},
|
|
"octomap": {
|
|
"description": "Build RTAB-Map with OctoMap support",
|
|
"dependencies": [
|
|
"octomap"
|
|
]
|
|
},
|
|
"opencv-contrib": {
|
|
"description": "Use OpenCV with contrib modules (e.g., xfeatures2d, aruco)",
|
|
"dependencies": [
|
|
{
|
|
"name": "opencv",
|
|
"default-features": false,
|
|
"features": [
|
|
"contrib"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"opencv-cuda": {
|
|
"description": "Use OpenCV with CUDA (accelerated SIFT ad SURF GPU options)",
|
|
"dependencies": [
|
|
{
|
|
"name": "opencv",
|
|
"default-features": false,
|
|
"features": [
|
|
"cuda"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"opencv-nonfree": {
|
|
"description": "Use OpenCV with nonfree module (surf feature)",
|
|
"dependencies": [
|
|
{
|
|
"name": "opencv",
|
|
"default-features": false,
|
|
"features": [
|
|
"nonfree"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"openni2": {
|
|
"description": "Build RTAB-Map with OpenNI2 camera driver",
|
|
"dependencies": [
|
|
"kinectsdk1",
|
|
"openni2"
|
|
]
|
|
},
|
|
"realsense2": {
|
|
"description": "Build RTAB-Map with RealSense2 camera driver",
|
|
"dependencies": [
|
|
{
|
|
"name": "realsense2",
|
|
"default-features": false,
|
|
"features": [
|
|
"tm2"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"tools": {
|
|
"description": "Build RTAB-Map's tools",
|
|
"dependencies": [
|
|
"yaml-cpp"
|
|
]
|
|
}
|
|
}
|
|
}
|