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
|
TEMPLATE = app
QT = gui \
core \
xml \
svg \
dbus
CONFIG += qt \
warn_on \
console \
release \
qdbus
LIBS = -Wl,--no-as-needed -lgslcblas -lgsl
SOURCES = mainwindowimpl.cpp \
gui.cpp \
plotimpl.cpp \
gelmanrubinimpl.cpp \
paramqt.cpp \
../warg/src/rng.cpp \
../warg/src/wargxml.cpp \
../warg/src/param.cpp \
../warg/src/rectree.cpp \
../warg/src/tree.cpp \
../warg/src/node.cpp \
../warg/src/data.cpp \
../warg/src/recedge.cpp \
paramcons.cpp \
paramconsmult.cpp \
densityontree.cpp \
outputfile.cpp \
parammr.cpp \
paramtreecons.cpp \
../warg/src/metropolis.cpp \
../warg/src/move.cpp \
../warg/src/movetheta.cpp \
../warg/src/moveremedge.cpp \
../warg/src/moveaddedge.cpp \
../warg/src/movesitechange.cpp \
../warg/src/movetimechange.cpp \
../warg/src/moverho.cpp \
../warg/src/moveedgechange.cpp \
../warg/src/movedelta.cpp \
../warg/src/moveageclonal.cpp \
../warg/src/movescaletree.cpp \
../warg/src/moveregraftclonal.cpp \
../warg/src/movegreedytree.cpp \
../warg/src/mpiutils.cpp \
colouredimpl.cpp \
pdimpl.cpp \
pheatimpl.cpp \
heatimpl.cpp
HEADERS = mainwindowimpl.h \
mainapplicationdbusadaptor.h \
plotimpl.h \
gelmanrubinimpl.h \
paramqt.h \
../warg/src/rng.h \
../warg/src/wargxml.h \
../warg/src/param.h \
../warg/src/rectree.h \
../warg/src/tree.h \
../warg/src/node.h \
../warg/src/rng.h \
../warg/src/data.h \
../warg/src/recedge.h \
paramcons.h \
paramconsmult.h \
densityontree.h \
outputfile.h \
parammr.h \
paramtreecons.h \
../warg/src/metropolis.h \
../warg/src/move.h \
../warg/src/movetheta.h \
../warg/src/moveremedge.h \
../warg/src/moveaddedge.h \
../warg/src/movesitechange.h \
../warg/src/movetimechange.h \
../warg/src/moverho.h \
../warg/src/moveedgechange.h \
../warg/src/movedelta.h \
../warg/src/moveageclonal.h \
../warg/src/movescaletree.h \
../warg/src/moveregraftclonal.h \
../warg/src/movegreedytree.h \
../warg/src/mpiutils.h \
colouredimpl.h \
pdimpl.h \
pheatimpl.h \
heatimpl.h
FORMS += mainwindow.ui \
plot.ui \
gelmanrubin.ui \
coloured.ui \
pd.ui \
pheat.ui \
heat.ui
|