blob: 88a4b611e4880a94040192450f810e98971c5ec3 (
plain)
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
|
QT += qml quick widgets
QMAKE_CXXFLAGS += -std=c++11 -fopenmp
QMAKE_LIBS += -larmadillo -fopenmp
HEADERS += main.h \
colorscale.h \
continuouscolorscale.h \
geometry.h \
scale.h \
scatterplot.h \
historygraph.h \
interactionhandler.h \
selectionhandler.h \
effectivenessobserver.h \
distortionobserver.h \
distortionmeasure.h \
npdistortion.h \
mp.h
SOURCES += main.cpp \
colorscale.cpp \
continuouscolorscale.cpp \
geometry.cpp \
scatterplot.cpp \
historygraph.cpp \
interactionhandler.cpp \
selectionhandler.cpp \
effectivenessobserver.cpp \
distortionobserver.cpp \
npdistortion.cpp \
lamp.cpp \
plmp.cpp \
knn.cpp \
forceScheme.cpp \
tsne.cpp \
measures.cpp \
dist.cpp
RESOURCES += pm.qrc
target.path = .
INSTALLS += target
|