mirror of
https://github.com/LongSoft/UEFITool.git
synced 2024-11-22 07:58:22 +08:00
1f0a80d035
- new ffsParser is done, supports FFSv3, non-UEFI data everywhere, fixed files, offsets for uncompressed data and many other things - command-line utilities are removed until the end of new engine's development
56 lines
972 B
Prolog
56 lines
972 B
Prolog
QT += core gui
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
|
|
|
TARGET = UEFITool
|
|
TEMPLATE = app
|
|
|
|
SOURCES += uefitool_main.cpp \
|
|
uefitool.cpp \
|
|
searchdialog.cpp \
|
|
types.cpp \
|
|
descriptor.cpp \
|
|
ffs.cpp \
|
|
peimage.cpp \
|
|
utility.cpp \
|
|
ffsparser.cpp \
|
|
treeitem.cpp \
|
|
treemodel.cpp \
|
|
messagelistitem.cpp \
|
|
guidlineedit.cpp \
|
|
LZMA/LzmaCompress.c \
|
|
LZMA/LzmaDecompress.c \
|
|
LZMA/SDK/C/LzFind.c \
|
|
LZMA/SDK/C/LzmaDec.c \
|
|
LZMA/SDK/C/LzmaEnc.c \
|
|
Tiano/EfiTianoDecompress.c \
|
|
Tiano/EfiTianoCompress.c \
|
|
Tiano/EfiTianoCompressLegacy.c
|
|
|
|
HEADERS += uefitool.h \
|
|
searchdialog.h \
|
|
basetypes.h \
|
|
descriptor.h \
|
|
gbe.h \
|
|
me.h \
|
|
ffs.h \
|
|
peimage.h \
|
|
types.h \
|
|
utility.h \
|
|
ffsparser.h \
|
|
treeitem.h \
|
|
treemodel.h \
|
|
messagelistitem.h \
|
|
guidlineedit.h \
|
|
LZMA/LzmaCompress.h \
|
|
LZMA/LzmaDecompress.h \
|
|
Tiano/EfiTianoDecompress.h \
|
|
Tiano/EfiTianoCompress.h
|
|
|
|
FORMS += uefitool.ui \
|
|
searchdialog.ui
|
|
|
|
RC_FILE = uefitool.rc
|
|
|
|
ICON = uefitool.icns
|
|
|