forked from openigtlink/OpenIGTLink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOpenIGTLinkConfig.cmake.in
60 lines (47 loc) · 2.54 KB
/
OpenIGTLinkConfig.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#-----------------------------------------------------------------------------
#
# OpenIGTLinkConfig.cmake - OpenIGTLink CMake configuration file for external projects.
#
# This file is configured by OpenIGTLink and used by the UseOpenIGTLink.cmake module
# to load OpenIGTLink's settings for an external project.
@OpenIGTLink_CONFIG_CODE@
# The OpenIGTLink include file directories.
SET(OpenIGTLink_INCLUDE_DIRS "@OpenIGTLink_INCLUDE_DIRS_CONFIG@")
# The OpenIGTLink library directories.
SET(OpenIGTLink_LIBRARY_DIRS "@OpenIGTLink_LIBRARY_DIRS_CONFIG@")
# The C and C++ flags added by OpenIGTLink to the cmake-configured flags.
SET(OpenIGTLink_REQUIRED_C_FLAGS "@OpenIGTLink_REQUIRED_C_FLAGS@")
SET(OpenIGTLink_REQUIRED_CXX_FLAGS "@OpenIGTLink_REQUIRED_CXX_FLAGS@")
SET(OpenIGTLink_REQUIRED_LINK_FLAGS "@OpenIGTLink_REQUIRED_LINK_FLAGS@")
# The OpenIGTLink Library version number
SET(OpenIGTLink_VERSION_MAJOR "@OpenIGTLink_VERSION_MAJOR@")
SET(OpenIGTLink_VERSION_MINOR "@OpenIGTLink_VERSION_MINOR@")
SET(OpenIGTLink_VERSION_PATCH "@OpenIGTLink_VERSION_PATCH@")
# The OpenIGTLink Protocol version number
SET(OpenIGTLink_PROTOCOL_VERSION "@OpenIGTLink_PROTOCOL_VERSION@")
# The location of the UseOpenIGTLink.cmake file.
SET(OpenIGTLink_USE_FILE "@OpenIGTLink_USE_FILE@")
# The build settings file.
SET(OpenIGTLink_BUILD_SETTINGS_FILE "@OpenIGTLink_BUILD_SETTINGS_FILE@")
# Whether OpenIGTLink was built with shared libraries.
SET(OpenIGTLink_BUILD_SHARED "@BUILD_SHARED_LIBS@")
# Whether OpenIGTLink was built with Tcl wrapping support.
SET(OpenIGTLink_CSWIG_TCL "@OpenIGTLink_CSWIG_TCL@")
SET(OpenIGTLink_CSWIG_PYTHON "@OpenIGTLink_CSWIG_PYTHON@")
SET(OpenIGTLink_CSWIG_JAVA "@OpenIGTLink_CSWIG_JAVA@")
# Whether OpenIGTLink was built with video streaming library support
SET(OpenIGTLink_USE_H264 @OpenIGTLink_USE_H264@)
SET(OpenIGTLink_USE_VP9 @OpenIGTLink_USE_VP9@)
SET(OpenIGTLink_USE_X265 @OpenIGTLink_USE_X265@)
SET(OpenIGTLink_USE_OpenHEVC @OpenIGTLink_USE_OpenHEVC@)
SET(OpenIGTLink_USE_AV1 @OpenIGTLink_USE_AV1@)
SET(OpenIGTLink_ENABLE_VIDEOSTREAMING @OpenIGTLink_ENABLE_VIDEOSTREAMING@)
SET(OpenIGTLink_USE_WEBSOCKET @OpenIGTLink_USE_WEBSOCKET@)
# Path to CableSwig configuration used by OpenIGTLink.
SET(OpenIGTLink_CableSwig_DIR "@OpenIGTLink_CableSwig_DIR_CONFIG@")
# A list of all libraries for OpenIGTLink. Those listed here should
# automatically pull in their dependencies.
SET(OpenIGTLink_LIBRARIES OpenIGTLink)
# The OpenIGTLink library targets.
SET(OpenIGTLink_LIBRARY_TARGETS_FILE "@OpenIGTLink_LIBRARY_TARGETS_FILE@")
include(${OpenIGTLink_LIBRARY_TARGETS_FILE})