# ============================================================================
# Copyright (c) 2011-2012 University of Pennsylvania
# Copyright (c) 2013-2014 Andreas Schuh
# All rights reserved.
#
# See COPYING file for license information or visit
# http://opensource.andreasschuh.com/cmake-basis/download.html#license
# ============================================================================
##############################################################################
# @file FindMatlabNiftiTools.cmake
# @brief Find MATLAB Central package "Tools for NIfTI and ANALYZE Image" (#8797).
#
# @par Input variables:
#
#
# @tp @b MatlabNiftiTools_DIR @endtp
# The MATLAB Central package files are searched under the specified
# root directory. If they are not found there, the default search
# paths are considered. This variable can also be set as
# environment variable. |
#
#
# @tp @b MATLABNIFTITOOLS_DIR @endtp
# Alternative environment variable for @p MatlabNiftiTools_DIR. |
#
#
#
# @par Output variables:
#
#
# @tp @b MatlabNiftiTools_FOUND @endtp
# Whether the package was found and the following CMake variables are valid. |
#
#
# @tp @b MatlabNiftiTools_INCLUDE_DIR @endtp
# Cached include directory/ies only related to the searched package. |
#
#
# @tp @b MatlabNiftiTools_INCLUDE_DIRS @endtp
# Include directory/ies of searched and dependent packages (not cached). |
#
#
# @tp @b MatlabNiftiTools_INCLUDES @endtp
# Alias for MatlabNiftiTools_INCLUDE_DIRS (not cached). |
#
#
#
# @ingroup CMakeFindModules
##############################################################################
# ----------------------------------------------------------------------------
# initialize search
if (NOT MatlabNiftiTools_DIR)
if (NOT $ENV{MATLABNIFTITOOLS_DIR} STREQUAL "")
set (MatlabNiftiTools_DIR "$ENV{MATLABNIFTITOOLS_DIR}" CACHE PATH "Installation prefix for MATLAB NIfTI tools." FORCE)
else ()
set (MatlabNiftiTools_DIR "$ENV{MatlabNiftiTools_DIR}" CACHE PATH "Installation prefix for MATLAB NIfTI tools." FORCE)
endif ()
endif ()
# ----------------------------------------------------------------------------
# find paths / files
if (MatlabNiftiTools_DIR)
find_path (
MatlabNiftiTools_INCLUDE_DIR
NAMES load_nii.m
HINTS ${MatlabNiftiTools_DIR}
DOC "path to directory containing load_nii.m"
NO_DEFAULT_PATH
)
else ()
find_path (
MatlabNiftiTools_INCLUDE_DIR
NAMES load_nii.m
HINTS ENV MATLABPATH
DOC "path to directory containing load_nii.m"
)
endif ()
# ----------------------------------------------------------------------------
# append paths / libraries of packages this package depends on
if (MatlabNiftiTools_INCLUDE_DIR)
set (MatlabNiftiTools_INCLUDE_DIRS "${MatlabNiftiTools_INCLUDE_DIR}")
set (MatlabNiftiTools_INCLUDES "${MatlabNiftiTools_INCLUDE_DIRS}")
endif ()
# ----------------------------------------------------------------------------
# handle the QUIETLY and REQUIRED arguments and set *_FOUND to TRUE
# if all listed variables are found or TRUE
include (FindPackageHandleStandardArgs)
find_package_handle_standard_args (
MatlabNiftiTools
REQUIRED_ARGS
MatlabNiftiTools_INCLUDE_DIR
)
set (MatlabNiftiTools_FOUND "${MATLABNIFTITOOLS_FOUND}")
# ----------------------------------------------------------------------------
# set MatlabNiftiTools_DIR
if (NOT MatlabNiftiTools_DIR AND MatlabNiftiTools_FOUND)
set (MatlabNiftiTools_DIR "${MatlabNiftiTools_INCLUDE_DIR}" CACHE PATH "Installation prefix for MATLAB NIfTI tools." FORCE)
endif ()