forked from Dax89/QHexView
-
Notifications
You must be signed in to change notification settings - Fork 0
/
QHexEdit.pri
31 lines (29 loc) · 1.24 KB
/
QHexEdit.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
HEADERS += $$PWD/document/commands/hexcommand.h \
$$PWD/document/commands/insertcommand.h \
$$PWD/document/commands/removecommand.h \
$$PWD/document/commands/replacecommand.h \
$$PWD/document/gapbuffer.h \
$$PWD/document/qhexcursor.h \
$$PWD/document/qhexdocument.h \
$$PWD/document/qhextheme.h \
$$PWD/paint/qhexmetrics.h \
$$PWD/paint/qhexpainter.h \
$$PWD/qhexedit.h \
$$PWD/qhexeditprivate.h \
$$PWD/document/metadata/qhexmetadataitem.h \
$$PWD/document/metadata/qhexmetadata.h
SOURCES += $$PWD/document/commands/hexcommand.cpp \
$$PWD/document/commands/insertcommand.cpp \
$$PWD/document/commands/removecommand.cpp \
$$PWD/document/commands/replacecommand.cpp \
$$PWD/document/gapbuffer.cpp \
$$PWD/document/qhexcursor.cpp \
$$PWD/document/qhexdocument.cpp \
$$PWD/document/qhextheme.cpp \
$$PWD/paint/qhexmetrics.cpp \
$$PWD/paint/qhexpainter.cpp \
$$PWD/qhexedit.cpp \
$$PWD/qhexeditprivate.cpp \
$$PWD/document/metadata/qhexmetadataitem.cpp \
$$PWD/document/metadata/qhexmetadata.cpp
INCLUDEPATH += $$PWD