#----------------------------------------------------------------------------- # # 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)