-
-
Notifications
You must be signed in to change notification settings - Fork 103
/
Copy pathQHexView.pri
40 lines (36 loc) · 1.88 KB
/
QHexView.pri
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
QT += widgets
DEFINES += "QHEXVIEW_ENABLE_DIALOGS=1"
HEADERS += $$PWD/include/QHexView/model/commands/hexcommand.h \
$$PWD/include/QHexView/model/commands/insertcommand.h \
$$PWD/include/QHexView/model/commands/removecommand.h \
$$PWD/include/QHexView/model/commands/replacecommand.h \
$$PWD/include/QHexView/model/buffer/qdevicebuffer.h \
$$PWD/include/QHexView/model/buffer/qhexbuffer.h \
$$PWD/include/QHexView/model/buffer/qmemorybuffer.h \
$$PWD/include/QHexView/model/buffer/qmemoryrefbuffer.h \
$$PWD/include/QHexView/model/buffer/qmappedfilebuffer.h \
$$PWD/include/QHexView/model/qhexdelegate.h \
$$PWD/include/QHexView/model/qhexutils.h \
$$PWD/include/QHexView/model/qhexcursor.h \
$$PWD/include/QHexView/model/qhexmetadata.h \
$$PWD/include/QHexView/model/qhexoptions.h \
$$PWD/include/QHexView/model/qhexdocument.h \
$$PWD/include/QHexView/dialogs/hexfinddialog.h \
$$PWD/include/QHexView/qhexview.h
SOURCES += $$PWD/src/model/commands/hexcommand.cpp \
$$PWD/src/model/commands/insertcommand.cpp \
$$PWD/src/model/commands/removecommand.cpp \
$$PWD/src/model/commands/replacecommand.cpp \
$$PWD/src/model/buffer/qdevicebuffer.cpp \
$$PWD/src/model/buffer/qhexbuffer.cpp \
$$PWD/src/model/buffer/qmemorybuffer.cpp \
$$PWD/src/model/buffer/qmemoryrefbuffer.cpp \
$$PWD/src/model/buffer/qmappedfilebuffer.cpp \
$$PWD/src/model/qhexdelegate.cpp \
$$PWD/src/model/qhexutils.cpp \
$$PWD/src/model/qhexcursor.cpp \
$$PWD/src/model/qhexmetadata.cpp \
$$PWD/src/model/qhexdocument.cpp \
$$PWD/src/dialogs/hexfinddialog.cpp \
$$PWD/src/qhexview.cpp
INCLUDEPATH += $$PWD/include