mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 01:59:00 +08:00
c5b5b4ea11
`rtabmap-res_tool` is moved to a separate port because it is a host dependency, and actual dependencies of `rtabmap` are heavy and non opt-out. Only minimal patching needed. Co-authored-by: Alexander Neumann <30894796+Neumann-A@users.noreply.github.com>
11 lines
235 B
CMake
11 lines
235 B
CMake
cmake_minimum_required(VERSION 3.10)
|
|
project(rtabmap)
|
|
set(PROJECT_PREFIX rtabmap)
|
|
|
|
include(GenerateExportHeader)
|
|
include(GNUInstallDirs)
|
|
|
|
list(PREPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake_modules")
|
|
|
|
add_subdirectory(utilite)
|