-
Notifications
You must be signed in to change notification settings - Fork 10
/
alglib.pro
63 lines (52 loc) · 1.41 KB
/
alglib.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
# -----------------------------------------------------------------------------
# alglib project profile
#
# \file alglib.pro
# \author Hugo
# \date 2010-03-10
# -----------------------------------------------------------------------------
TEMPLATE = lib
TARGET = alglib
DESTDIR = ../../lib
DLLDESTDIR = ../../lib
# set high warn level (warn 4 on MSVC)
WARN = HIGH
# add used projects here (see included pri files below for available projects)
CONFIG += staticlib
# -- System -------------------------------------------------------------
include ($(MLAB_MeVis_Foundation)/Configuration/IncludePackages.pri)
INCLUDEPATH += src
HEADERS += \
src/alglibinternal.h \
src/alglibmisc.h \
src/ap.h \
src/dataanalysis.h \
src/diffequations.h \
src/fasttransforms.h \
src/integration.h \
src/interpolation.h \
src/linalg.h \
src/optimization.h \
src/solvers.h \
src/specialfunctions.h \
src/statistics.h \
src/stdafx.h
SOURCES += \
src/alglibinternal.cpp \
src/alglibmisc.cpp \
src/ap.cpp \
src/dataanalysis.cpp \
src/diffequations.cpp \
src/fasttransforms.cpp \
src/integration.cpp \
src/interpolation.cpp \
src/linalg.cpp \
src/optimization.cpp \
src/solvers.cpp \
src/specialfunctions.cpp \
src/statistics.cpp
# additional files that are NOT compiled
RELATEDFILES += \
gpl2.txt \
gpl3.txt \
manual.cpp.html