-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpairwisedistancesplugin.pro
49 lines (41 loc) · 1.5 KB
/
pairwisedistancesplugin.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
QT += core gui sql widgets
TEMPLATE = lib
CONFIG += plugin
INCLUDEPATH += ../../gama-q2
INCLUDEPATH += ../../gama-q2/lib/gama/lib
TARGET = $$qtLibraryTarget(pairwisedistancesplugin)
SOURCES += \
pairwisedistancesplugin.cpp \
data.cpp \
datalist.cpp \
help.cpp \
mytablewidgetitem.cpp \
coupple.cpp \
coupplelist.cpp
HEADERS += \
pairwisedistancesplugin.h \
data.h \
datalist.h \
help.h \
mytablewidgetitem.h \
coupple.h \
coupplelist.h
win32 {
CONFIG(debug, release|debug):DESTDIR = ../../gama-q2/debug/plugins
CONFIG(release, release|debug):DESTDIR = ../../gama-q2/release/plugins
} else {
DESTDIR = ../../gama-q2/plugins
}
CONFIG += c++11
win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD/../../gama/release/ -lgama
else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../../gama/debug/ -lgama
else:unix: LIBS += -L$$OUT_PWD/../../gama/ -lgama
INCLUDEPATH += $$PWD/../../gama
DEPENDPATH += $$PWD/../../gama
win32-g++:CONFIG(release, debug|release): PRE_TARGETDEPS += $$OUT_PWD/../../gama/release/libgama.a
else:win32-g++:CONFIG(debug, debug|release): PRE_TARGETDEPS += $$OUT_PWD/../../gama/debug/libgama.a
else:win32:!win32-g++:CONFIG(release, debug|release): PRE_TARGETDEPS += $$OUT_PWD/../../gama/release/gama.lib
else:win32:!win32-g++:CONFIG(debug, debug|release): PRE_TARGETDEPS += $$OUT_PWD/../../gama/debug/gama.lib
else:unix: PRE_TARGETDEPS += $$OUT_PWD/../../gama/libgama.a
RESOURCES += \
resources.qrc