-
Notifications
You must be signed in to change notification settings - Fork 11
/
FindSparseBayes.cmake
30 lines (25 loc) · 1.01 KB
/
FindSparseBayes.cmake
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
# ============================================================================
# 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 FindSparseBayes.cmake
# @brief Find SparseBayes package from Vector Anomaly Limited.
#
# @sa http://www.vectoranomaly.com/downloads/downloads.htm
##############################################################################
include (FindPackageHandleStandardArgs)
find_path (
SparseBayes_DIR SparseBayes.m
DOC "The directory containing SparseBayes.m file of the SparseBayes package."
)
set (SparseBayes_INCLUDE_DIR "${SparseBayes_DIR}")
find_package_handle_standard_args (
SparseBayes
REQUIRED_ARGS
SparseBayes_INCLUDE_DIR
)