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