-
Notifications
You must be signed in to change notification settings - Fork 0
/
sbpl-config.cmake.in
30 lines (26 loc) · 1.19 KB
/
sbpl-config.cmake.in
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
# ===================================================================================
# The SBPL CMake configuration file
#
# ** File generated automatically, do not modify **
#
# Usage from an external project:
# In your CMakeLists.txt, add these lines:
#
# FIND_PACKAGE(sbpl REQUIRED )
# INCLUDE_DIRECTORIES(${SBPL_INCLUDE_DIRS})
# TARGET_LINK_LIBRARIES(MY_TARGET_NAME ${SBPL_LIBRARIES})
#
# This file will define the following variables:
# - SBPL_LIBRARIES : The list of libraries to links against as absolute path
# - SBPL_LIBRARY_DIRS : The directory where lib files are. Calling
# LINK_DIRECTORIES with this path is NOT needed.
# - SBPL_INCLUDE_DIRS : The SBPL 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(SBPL_INCLUDE_DIRS "@SBPL_INCLUDE_DIR@")
set(SBPL_LIBRARY_DIRS "@SBPL_LIB_DIR@")
# Set library names as absolute paths:
set(SBPL_LIBRARIES "@SBPL_LIB_DIR@/libsbpl@CMAKE_SHARED_LIBRARY_SUFFIX@")