-
Notifications
You must be signed in to change notification settings - Fork 7
/
RTToolboxConfig.cmake.in
35 lines (26 loc) · 1.22 KB
/
RTToolboxConfig.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
31
32
33
34
35
#-----------------------------------------------------------------------------
#
# RTToolboxConfig.cmake - RTToolbox CMake configuration file for external projects.
#
# This file is configured by RTToolbox and used by the UseRTToolbox.cmake module
# to load RTToolbox's settings for an external project.
SET(RTToolbox_FOUND 1)
# The RTToolbox source tree.
SET(RTToolbox_SOURCE_DIR "@RTToolbox_SOURCE_DIR@")
# The RTToolbox binary tree.
SET(RTToolbox_BINARY_DIR "@RTToolbox_BINARY_DIR@")
# The RTToolbox include file directories.
SET(RTToolbox_INCLUDE_DIRS "@RTToolbox_INCLUDE_DIRS_CONFIG@")
# The RTToolbox library directories.
SET(RTToolbox_LIBRARY_DIRS "@RTToolbox_LIBRARY_DIRS_CONFIG@")
# The RTToolbox version number
SET(RTToolbox_VERSION_MAJOR "@RTToolbox_VERSION_MAJOR@")
SET(RTToolbox_VERSION_MINOR "@RTToolbox_VERSION_MINOR@")
SET(RTToolbox_VERSION_PATCH "@RTToolbox_VERSION_PATCH@")
# The location of the RTToolboxTargets.cmake file.
SET(RTToolbox_TARGETS_FILE "@RTToolbox_TARGETS_FILE@")
#import targets to find the RTTB libraries as external library
IF(NOT RTToolbox_TARGETS_IMPORTED)
SET(RTToolbox_TARGETS_IMPORTED 1)
INCLUDE(${RTToolbox_TARGETS_FILE})
ENDIF(NOT RTToolbox_TARGETS_IMPORTED)