2013-10-09 00:59:09 +08:00
|
|
|
QT += core gui
|
|
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
2013-10-08 15:07:03 +08:00
|
|
|
|
2013-10-09 00:59:09 +08:00
|
|
|
TARGET = UEFITool
|
|
|
|
TEMPLATE = app
|
|
|
|
|
2014-04-22 00:05:29 +08:00
|
|
|
SOURCES += uefitool_main.cpp \
|
2014-02-27 17:14:41 +08:00
|
|
|
uefitool.cpp \
|
|
|
|
searchdialog.cpp \
|
|
|
|
types.cpp \
|
|
|
|
descriptor.cpp \
|
|
|
|
ffs.cpp \
|
2015-02-06 16:47:19 +08:00
|
|
|
peimage.cpp \
|
2014-02-27 17:14:41 +08:00
|
|
|
ffsengine.cpp \
|
|
|
|
treeitem.cpp \
|
|
|
|
treemodel.cpp \
|
|
|
|
messagelistitem.cpp \
|
2014-08-15 03:42:18 +08:00
|
|
|
guidlineedit.cpp \
|
2014-02-27 17:14:41 +08:00
|
|
|
LZMA/LzmaCompress.c \
|
|
|
|
LZMA/LzmaDecompress.c \
|
|
|
|
LZMA/SDK/C/LzFind.c \
|
|
|
|
LZMA/SDK/C/LzmaDec.c \
|
|
|
|
LZMA/SDK/C/LzmaEnc.c \
|
|
|
|
Tiano/EfiTianoDecompress.c \
|
2014-11-11 00:48:59 +08:00
|
|
|
Tiano/EfiTianoCompress.c \
|
|
|
|
Tiano/EfiTianoCompressLegacy.c
|
2014-11-18 23:01:20 +08:00
|
|
|
|
2013-10-09 00:59:09 +08:00
|
|
|
HEADERS += uefitool.h \
|
2014-02-27 17:14:41 +08:00
|
|
|
searchdialog.h \
|
|
|
|
basetypes.h \
|
|
|
|
descriptor.h \
|
|
|
|
gbe.h \
|
|
|
|
me.h \
|
|
|
|
ffs.h \
|
|
|
|
peimage.h \
|
|
|
|
types.h \
|
|
|
|
ffsengine.h \
|
|
|
|
treeitem.h \
|
|
|
|
treemodel.h \
|
|
|
|
messagelistitem.h \
|
2014-08-15 03:42:18 +08:00
|
|
|
guidlineedit.h \
|
2014-02-27 17:14:41 +08:00
|
|
|
LZMA/LzmaCompress.h \
|
|
|
|
LZMA/LzmaDecompress.h \
|
|
|
|
Tiano/EfiTianoDecompress.h \
|
|
|
|
Tiano/EfiTianoCompress.h
|
2014-01-11 17:23:56 +08:00
|
|
|
|
2013-12-05 04:27:12 +08:00
|
|
|
FORMS += uefitool.ui \
|
2014-02-27 17:14:41 +08:00
|
|
|
searchdialog.ui
|
2014-01-11 17:23:56 +08:00
|
|
|
|
2013-10-09 00:59:09 +08:00
|
|
|
RC_FILE = uefitool.rc
|
2013-12-05 04:27:12 +08:00
|
|
|
|
2013-10-14 20:11:54 +08:00
|
|
|
ICON = uefitool.icns
|
2014-02-27 17:14:41 +08:00
|
|
|
|