-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBayesNetGUI.pro
53 lines (46 loc) · 1 KB
/
BayesNetGUI.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
#-------------------------------------------------
#
# Project created by QtCreator 2015-07-02T14:40:14
#
#-------------------------------------------------
QT += \
core gui \
printsupport
# qtprintsupport
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = BayesNetGUI
TEMPLATE = app
QMAKE_CXXFLAGS += -std=c++11
SOURCES += \
mainwindow.cpp \
qcustomplot.cpp \
cptmodel.cpp \
bayesnet.cpp \
dialogquickpredict.cpp \
main.cpp \
learnbayes.cpp \
utility.cpp \
qbayesedge.cpp \
qbayesnode.cpp \
bngraphicsscene.cpp \
convertbayesdata.cpp \
tsvmodel.cpp \
thresholdmodel.cpp
HEADERS += \
qcustomplot.h \
bayesnet.h \
dialogquickpredict.h \
mainwindow.h \
learnbayes.h \
cptmodel.h \
utility.h \
qbayesedge.h \
qbayesnode.h \
bngraphicsscene.h \
convertbayesdata.h \
tsvmodel.h \
thresholdmodel.h
FORMS += \
mainwindow.ui \
dialogquickpredict.ui \
convertbayesdata.ui