-
Notifications
You must be signed in to change notification settings - Fork 1
/
browser.pro
50 lines (43 loc) · 1.39 KB
/
browser.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
TEMPLATE = app
INCLUDEPATH += . build muParserLib
# Input
HEADERS += forms/mainform.ui.h \
Draw.h ReadRootTree.h \
Canvas.h \
global.h \
Helper.h \
forms/formviewdata.ui.h \
forms/formOpenFile.ui.h \
ColumnCollection.h \
CanvasCollection.h
#The following line was changed from INTERFACES to FORMS3 by qt3to4
FORMS3 += forms/mainform.ui\
forms/formviewdata.ui \
forms/formChooseDisplayColumns.ui \
forms/formAbout.ui \
forms/formOpenFile.ui
SOURCES += main.cpp \
Draw.cpp \
ReadRootTree.cpp \
Canvas.cpp \
Helper.cpp \
ColumnCollection.cpp \
CanvasCollection.cpp
SOURCES += muParserLib/muParserBase.cpp \
muParserLib/muParser.cpp \
muParserLib/muParserBytecode.cpp \
muParserLib/muParserCallback.cpp \
muParserLib/muParserError.cpp \
muParserLib/muParserTokenReader.cpp
LIBS += -L$(ROOTSYS)/lib -lCore -lCint -lHist -lGraf -lGraf3d -lGpad -lTree -lRint -lPostscript -lMatrix -lPhysics -pthread -lm -ldl
include ($(ROOTSYS)/include/rootcint.pri)
unix {
UI_DIR = build/
MOC_DIR = build/
OBJECTS_DIR = build/
}
DEFINES += DEBUG
#The following line was inserted by qt3to4
QT += qt3support
#The following line was inserted by qt3to4
CONFIG += uic3