-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathIGSTKConfig.cmake.in
69 lines (51 loc) · 2.05 KB
/
IGSTKConfig.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
61
62
63
64
65
66
67
68
#-----------------------------------------------------------------------------
#
# IGSTKConfig.cmake - IGSTK CMake configuration file for external projects.
#
# This file is configured by IGSTK and used by the UseIGSTK.cmake module
# to load IGSTK's settings for an external project.
# The IGSTK source tree.
SET(IGSTK_SOURCE_DIR "@IGSTK_SOURCE_DIR@")
# The IGSTK include file directories.
SET(IGSTK_INCLUDE_DIRS "@IGSTK_INCLUDE_DIRS_CONFIG@")
# The IGSTK library directories.
SET(IGSTK_LIBRARY_DIRS "@IGSTK_LIBRARY_DIRS_CONFIG@")
# The C and C++ flags added by IGSTK to the cmake-configured flags.
SET(IGSTK_REQUIRED_C_FLAGS "@IGSTK_REQUIRED_C_FLAGS@")
SET(IGSTK_REQUIRED_CXX_FLAGS "@IGSTK_REQUIRED_CXX_FLAGS@")
# The IGSTK version number
SET(IGSTK_VERSION_MAJOR "@IGSTK_VERSION_MAJOR@")
SET(IGSTK_VERSION_MINOR "@IGSTK_VERSION_MINOR@")
SET(IGSTK_VERSION_PATCH "@IGSTK_VERSION_PATCH@")
# The location of the UseIGSTK.cmake file.
SET(IGSTK_USE_FILE "@IGSTK_USE_FILE@")
# The build settings file.
SET(IGSTK_BUILD_SETTINGS_FILE "@IGSTK_BUILD_SETTINGS_FILE@")
# Whether IGSTK was built with shared libraries.
SET(IGSTK_BUILD_SHARED "@BUILD_SHARED_LIBS@")
# A list of all libraries for IGSTK. Those listed here should
# automatically pull in their dependencies.
SET(IGSTK_LIBRARIES IGSTK)
# The IGSTK library dependencies.
IF(NOT IGSTK_NO_LIBRARY_DEPENDS)
INCLUDE("@IGSTK_LIBRARY_DEPENDS_FILE@")
ENDIF(NOT IGSTK_NO_LIBRARY_DEPENDS)
# The Binary Directory of ITK
SET(ITK_DIR "@ITK_DIR@")
SET(IGSTK_USE_ITK_FILE "@USE_ITK_FILE@")
# The Binary Directory of VTK
SET(VTK_DIR "@VTK_DIR@")
SET(IGSTK_USE_VTK_FILE "@USE_VTK_FILE@")
# Qt option
SET(IGSTK_USE_Qt "@IGSTK_USE_Qt@")
# FLTK option
SET(IGSTK_USE_FLTK "@IGSTK_USE_FLTK@")
# The Binary Directory of FLTK
SET(IGSTK_FLTK_DIR "@FLTK_DIR@")
SET(FLTK_FLUID_EXECUTABLE "@FLTK_FLUID_EXECUTABLE@")
# MicronTracker option
SET(IGSTK_USE_MicronTracker "@IGSTK_USE_MicronTracker@")
# InfinitTrack option
SET(IGSTK_USE_InfiniTrack "@IGSTK_USE_InfiniTrack@")
# NDICertus Tracker option
SET(IGSTK_USE_NDICertusTracker "@IGSTK_USE_NDICertusTracker@")