forked from biolab/orange2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup-site.cfg
84 lines (71 loc) · 2.16 KB
/
setup-site.cfg
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
####################################
# Orange build process configuration
####################################
#
# The Orange sources come bundled with some third party libraries
# that are build and linked (statically) into Orange.
# These are:
#
# * BLAS (a subset)
# * LIBSVM (v3.17 - v3.* is required)
# * LIBLINEAR (v1.93 - >= 1.9 is preferred, <= 1.8 needs a special cflag)
# * LINPACK (can be substituted by libR)
# * QHull
# * R lib (a subset)
#
# You can customize the build process to instead link to the
# corresponding external library by modifying this file before
# running the setup.py script.
#
# To indicate that you want to link to an external library simply
# uncomment the 'library = name' line in the corresponding section.
# The 'name' argument must name the library you want to link with.
# This is usually already correct, but sometimes you would need to
# change it, for instance use 'blas_mt' (usually) for a
# multi-threaded blas (or 'goto_blas', 'atlas' etc.)
#
# You can also specify the header file and library search paths
# using the 'include_dirs = path' and 'library_dirs = path' if they
# are not on the default search paths.
#
# If building and installing with an automated package manager
# (easy_install or pip) setup.py will also read '~/.orange-site.cfg'
# file for configuration options.
[GLOBALS]
####################
# BLAS configuration
####################
[blas]
#library = blas
######################
# LibSVM configuration
######################
[libsvm]
#library = svm
#include_dirs = /usr/local/include
#########################
# LIBLINEAR configuration
#########################
#
# If you want to use LIBLINEAR <= 1.8 you will need to add a
# special cflag "-DWITH_API_LIBLINEAR18" to your system's CFLAGS.
# e.g. export CFLAGS="$CFLAGS -DWITH_API_LIBLINEAR18"
[liblinear]
#library = linear
#include_dirs = /usr/include
#####################
# R lib configuration
#####################
[R]
#library = R
#library_dirs = /usr/lib/R/lib
##############################
# LINPACK / libR configuration
##############################
[R]
#library = R
#####################
# QHull configuration
#####################
[qhull]
#library = qhull