mirror of
https://github.com/LongSoft/UEFITool.git
synced 2024-11-22 16:08:23 +08:00
9045fc6cc0
- added UEFIDump tool, which is now Windows-only UEFIExtract with some limitations, made as PoC for non-Qt engine usage - ensured that Qt classes will be used, if available - checked build of UT and UE - porting of UEFIFind to non-Qt engine TBD
49 lines
1.0 KiB
Prolog
49 lines
1.0 KiB
Prolog
QT += core
|
|
QT -= gui
|
|
|
|
TARGET = UEFIExtract
|
|
TEMPLATE = app
|
|
CONFIG += console
|
|
CONFIG -= app_bundle
|
|
|
|
SOURCES += \
|
|
uefiextract_main.cpp \
|
|
ffsdumper.cpp \
|
|
../common/types.cpp \
|
|
../common/descriptor.cpp \
|
|
../common/ffs.cpp \
|
|
../common/nvram.cpp \
|
|
../common/ffsparser.cpp \
|
|
../common/ffsreport.cpp \
|
|
../common/fitparser.cpp \
|
|
../common/peimage.cpp \
|
|
../common/treeitem.cpp \
|
|
../common/treemodel.cpp \
|
|
../common/utility.cpp \
|
|
../common/LZMA/LzmaDecompress.c \
|
|
../common/LZMA/SDK/C/LzmaDec.c \
|
|
../common/Tiano/EfiTianoDecompress.c \
|
|
../common/ustring.cpp
|
|
|
|
HEADERS += \
|
|
ffsdumper.h \
|
|
../common/basetypes.h \
|
|
../common/descriptor.h \
|
|
../common/gbe.h \
|
|
../common/me.h \
|
|
../common/ffs.h \
|
|
../common/nvram.h \
|
|
../common/ffsparser.h \
|
|
../common/ffsreport.h \
|
|
../common/fitparser.h \
|
|
../common/peimage.h \
|
|
../common/types.h \
|
|
../common/treeitem.h \
|
|
../common/treemodel.h \
|
|
../common/utility.h \
|
|
../common/LZMA/LzmaDecompress.h \
|
|
../common/Tiano/EfiTianoDecompress.h \
|
|
../common/ubytearray.h \
|
|
../common/ustring.h
|
|
|