-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathgsl.pro
189 lines (172 loc) · 4.87 KB
/
gsl.pro
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
#-------------------------------------------------
#
# Project created by QtCreator 2019-07-10T22:38:01
#
#-------------------------------------------------
QT -= core gui
TEMPLATE = lib
CONFIG += staticlib
# Uncomment this line for a production build, to build for both Intel and Apple Silicon. This only works with Qt6;
# Qt5 for macOS is built for Intel only. Uncomment this for all components or you will get link errors.
#QMAKE_APPLE_DEVICE_ARCHS = x86_64 arm64
# Uncomment the lines below to enable ASAN (Address Sanitizer), for debugging of memory issues, in every
# .pro file project-wide. See https://clang.llvm.org/docs/AddressSanitizer.html for discussion of ASAN
# Also set the ASAN_OPTIONS env. variable, in the Run Settings section of the Project tab in Qt Creator, to
# strict_string_checks=1:detect_stack_use_after_return=1:check_initialization_order=1:strict_init_order=1
# This also enables undefined behavior sanitizing, in conjunction with ASAN, because why not.
#CONFIG += sanitizer sanitize_address sanitize_undefined
CONFIG -= qt
CONFIG += object_parallel_to_source
CONFIG += c11
QMAKE_CFLAGS += -std=c11
QMAKE_CFLAGS_DEBUG += -g -Og -DDEBUG=1
QMAKE_CFLAGS_RELEASE += -O3
# get rid of spurious errors on Ubuntu, for now
linux-*: {
QMAKE_CFLAGS += -Wno-unknown-pragmas -Wno-attributes -Wno-unused-parameter -Wno-unused-but-set-parameter
}
INCLUDEPATH = . ./blas ./block ./cblas ./cdf ./complex ./err ./interpolation ./linalg ./matrix ./randist ./rng ./specfunc ./sys ./vector
# prevent link dependency cycles
QMAKE_LFLAGS += $$QMAKE_LFLAGS_NOUNDEF
SOURCES += \
blas/blas.c \
block/init.c \
cblas/ddot.c \
cblas/dgemv.c \
cblas/dtrmv.c \
cblas/dtrsv.c \
cblas/xerbla.c \
cdf/gauss.c \
cdf/gaussinv.c \
cdf/tdist.c \
complex/inline.c \
complex/math.c \
err/error.c \
err/message.c \
err/stream.c \
interpolation/accel.c \
interpolation/akima.c \
interpolation/bicubic.c \
interpolation/bilinear.c \
interpolation/cspline.c \
interpolation/inline.c \
interpolation/interp.c \
interpolation/interp2d.c \
interpolation/linear.c \
interpolation/spline.c \
interpolation/spline2d.c \
linalg/cholesky.c \
linalg/tridiag.c \
matrix/copy.c \
matrix/init.c \
matrix/matrix.c \
matrix/rowcol.c \
matrix/submatrix.c \
matrix/swap.c \
randist/beta.c \
randist/binomial_tpe.c \
randist/cauchy.c \
randist/chisq.c \
randist/discrete.c \
randist/exponential.c \
randist/fdist.c \
randist/gamma.c \
randist/gauss.c \
randist/gausszig.c \
randist/geometric.c \
randist/laplace.c \
randist/lognormal.c \
randist/multinomial.c \
randist/mvgauss.c \
randist/nbinomial.c \
randist/poisson.c \
randist/shuffle.c \
randist/tdist.c \
randist/weibull.c \
rng/inline.c \
rng/mt.c \
rng/rng.c \
rng/taus.c \
specfunc/beta.c \
specfunc/elementary.c \
specfunc/erfc.c \
specfunc/exp.c \
specfunc/expint.c \
specfunc/gamma_inc.c \
specfunc/gamma.c \
specfunc/log.c \
specfunc/pow_int.c \
specfunc/psi.c \
specfunc/trig.c \
specfunc/zeta.c \
sys/coerce.c \
sys/fdiv.c \
sys/infnan.c \
sys/minmax.c \
sys/pow_int.c \
vector/init.c \
vector/oper.c \
vector/vector.c \
vector/view.c
HEADERS += \
build.h \
config.h \
gsl_errno.h \
gsl_inline.h \
gsl_machine.h \
gsl_math.h \
gsl_minmax.h \
gsl_nan.h \
gsl_pow_int.h \
gsl_precision.h \
gsl_types.h \
gsl_version.h \
blas/gsl_blas_types.h \
blas/gsl_blas.h \
block/gsl_block_double.h \
block/gsl_block.h \
block/gsl_check_range.h \
cblas/cblas.h \
cblas/error_cblas_l2.h \
cblas/error_cblas.h \
cblas/gsl_cblas.h \
cblas/source_dot_r.h \
cblas/source_gemv_r.h \
cblas/source_trmv_r.h \
cblas/source_trsv_r.h \
cdf/gsl_cdf.h \
cdf/rat_eval.h \
complex/gsl_complex_math.h \
complex/gsl_complex.h \
err/gsl_message.h \
interpolation/gsl_interp.h \
interpolation/gsl_interp2d.h \
interpolation/gsl_spline.h \
interpolation/gsl_spline2d.h \
interpolation/integ_eval.h \
linalg/gsl_linalg.h \
linalg/tridiag.h \
matrix/gsl_matrix_double.h \
matrix/gsl_matrix.h \
matrix/view.h \
randist/gsl_randist.h \
rng/gsl_rng.h \
specfunc/chebyshev.h \
specfunc/check.h \
specfunc/error.h \
specfunc/eval.h \
specfunc/gsl_sf_elementary.h \
specfunc/gsl_sf_erf.h \
specfunc/gsl_sf_exp.h \
specfunc/gsl_sf_expint.h \
specfunc/gsl_sf_gamma.h \
specfunc/gsl_sf_log.h \
specfunc/gsl_sf_pow_int.h \
specfunc/gsl_sf_psi.h \
specfunc/gsl_sf_result.h \
specfunc/gsl_sf_trig.h \
specfunc/gsl_sf_zeta.h \
sys/gsl_sys.h \
vector/gsl_vector_double.h \
vector/gsl_vector.h \
vector/view.h