mirror of
https://github.com/LongSoft/UEFITool.git
synced 2024-11-22 07:58:22 +08:00
754f9c5b13
- EFI11/Tiano compression code reverted back to 0.17.x implementation because of higher compression ratio - delete and backspace work properly for GUID search field
53 lines
907 B
Prolog
53 lines
907 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 \
|
|
ffsengine.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
|
|
|
|
HEADERS += uefitool.h \
|
|
searchdialog.h \
|
|
basetypes.h \
|
|
descriptor.h \
|
|
gbe.h \
|
|
me.h \
|
|
ffs.h \
|
|
peimage.h \
|
|
types.h \
|
|
ffsengine.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
|
|
|