-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathMatchPointConfig.cmake.in
More file actions
58 lines (44 loc) · 2.1 KB
/
MatchPointConfig.cmake.in
File metadata and controls
58 lines (44 loc) · 2.1 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#-----------------------------------------------------------------------------
#
# MatchPointConfig.cmake - MatchPoint CMake configuration file for external projects.
#
# This file is configured by MatchPoint and used by the UseMatchPoint.cmake module
# to load MatchPoint's settings for an external project.
SET(MatchPoint_FOUND 1)
# The MatchPoint source tree.
SET(MatchPoint_SOURCE_DIR "@MatchPoint_SOURCE_DIR@")
# The MatchPoint binary tree.
SET(MatchPoint_BINARY_DIR "@MatchPoint_BINARY_DIR@")
# The MatchPoint include file directories.
SET(MatchPoint_INCLUDE_DIRS "@MatchPoint_INCLUDE_DIRS_CONFIG@")
# The MatchPoint library directories.
SET(MatchPoint_LIBRARY_DIRS "@MatchPoint_LIBRARY_DIRS_CONFIG@")
# The itk source tree used by MatchPoint.
SET(MatchPoint_ITK_SOURCE_DIR @MatchPoint_ITK_SOURCE_DIR@)
# The itk library directories used by MatchPoint.
SET(MatchPoint_ITK_LIBRARY_DIRS @MatchPoint_ITK_LIBRARY_DIRS@)
# The itk library directories used by MatchPoint.
SET(MatchPoint_ITK_LIBRARIES @MatchPoint_ITK_LIBRARIES@)
# The itk include directories used by MatchPoint.
SET(MatchPoint_ITK_INCLUDE_DIRS @MatchPoint_ITK_INCLUDE_DIRS@)
# The MatchPoint version number
SET(MatchPoint_VERSION_MAJOR "@MatchPoint_VERSION_MAJOR@")
SET(MatchPoint_VERSION_MINOR "@MatchPoint_VERSION_MINOR@")
SET(MatchPoint_VERSION_PATCH "@MatchPoint_VERSION_PATCH@")
# MatchPoint DLL interface version number.
SET(MatchPoint_DLL_INTERFACE_VERSION_MAJOR "@MatchPoint_DLL_INTERFACE_VERSION_MAJOR@")
SET(MatchPoint_DLL_INTERFACE_VERSION_MINOR "@MatchPoint_DLL_INTERFACE_VERSION_MINOR@")
# The location of the UseMatchPoint.cmake file.
SET(MatchPoint_USE_FILE "@MatchPoint_USE_FILE@")
# Import MatchPoint targets.
SET(MatchPoint_TARGETS_FILE "@MatchPoint_TARGETS_FILE@")
if(NOT MatchPoint_TARGETS_IMPORTED)
set(MatchPoint_TARGETS_IMPORTED 1)
include("${MatchPoint_TARGETS_FILE}")
endif()
# The MatchPoint library dependencies.
IF(NOT MatchPoint_NO_LIBRARY_DEPENDS AND
EXISTS "@MatchPoint_LIBRARY_DEPENDS_FILE@")
INCLUDE("@MatchPoint_LIBRARY_DEPENDS_FILE@")
ENDIF(NOT MatchPoint_NO_LIBRARY_DEPENDS AND
EXISTS "@MatchPoint_LIBRARY_DEPENDS_FILE@")