BASIS  r3148
FindSparseBayes.cmake
Go to the documentation of this file.
00001 ##############################################################################
00002 # @file  FindSparseBayes.cmake
00003 # @brief Find SparseBayes package from Vector Anomaly Limited.
00004 #
00005 # @sa http://www.vectoranomaly.com/downloads/downloads.htm
00006 #
00007 # Copyright (c) 2012 University of Pennsylvania. All rights reserved.<br />
00008 # See https://www.cbica.upenn.edu/sbia/software/license.html or COPYING file.
00009 #
00010 # Contact: SBIA Group <sbia-software at uphs.upenn.edu>
00011 ##############################################################################
00012 
00013 include (FindPackageHandleStandardArgs)
00014 
00015 find_path (
00016   SparseBayes_DIR SparseBayes.m
00017   DOC "The directory containing SparseBayes.m file of the SparseBayes package."
00018 )
00019 
00020 set (SparseBayes_INCLUDE_DIR "${SparseBayes_DIR}")
00021 
00022 find_package_handle_standard_args (
00023   SparseBayes
00024   REQUIRED_ARGS
00025     SparseBayes_INCLUDE_DIR
00026 )