mirror of
https://github.com/LongSoft/UEFITool.git
synced 2024-11-22 07:58:22 +08:00
2ec7ce1c30
-reverted some changes done in 0.20.0 update -added proper handling of non-standard data in volume's free space - new type "Free space" added - added machine type information - solved a typo in DOS/PE signature check
54 lines
944 B
Prolog
54 lines
944 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 \
|
|
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 \
|
|
Tiano/EfiTianoCompressLegacy.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
|
|
|