/usr/share/octomap/octomap-config.cmake is in liboctomap-dev 1.8.1+dfsg-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | # ===================================================================================
# The OctoMap CMake configuration file
#
# ** File generated automatically, do not modify **
#
# Usage from an external project:
# In your CMakeLists.txt, add these lines:
#
# FIND_PACKAGE(octomap REQUIRED )
# INCLUDE_DIRECTORIES(${OCTOMAP_INCLUDE_DIRS})
# TARGET_LINK_LIBRARIES(MY_TARGET_NAME ${OCTOMAP_LIBRARIES})
#
#
# This file will define the following variables:
# - OCTOMAP_LIBRARIES : The list of libraries to links against.
# - OCTOMAP_LIBRARY_DIRS : The directory where lib files are. Calling
# LINK_DIRECTORIES with this path is NOT needed.
# - OCTOMAP_INCLUDE_DIRS : The OctoMap include directories.
#
# Based on the example CMake Tutorial
# http://www.vtk.org/Wiki/CMake/Tutorials/How_to_create_a_ProjectConfig.cmake_file
# and OpenCVConfig.cmake.in from OpenCV
# ===================================================================================
set(OCTOMAP_INCLUDE_DIRS "/usr/include")
set(OCTOMAP_LIBRARY_DIRS "/usr/lib")
# Set library names
set(OCTOMAP_LIBRARIES
"/usr/lib/liboctomap.so"
"/usr/lib/liboctomath.so"
)
|