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
43 lines
939 B
Prolog
43 lines
939 B
Prolog
QT += core
|
|
QT -= gui
|
|
|
|
TARGET = UEFIFind
|
|
TEMPLATE = app
|
|
CONFIG += console
|
|
CONFIG -= app_bundle
|
|
|
|
SOURCES += uefifind_main.cpp \
|
|
uefifind.cpp \
|
|
../common/types.cpp \
|
|
../common/descriptor.cpp \
|
|
../common/ffs.cpp \
|
|
../common/nvram.cpp \
|
|
../common/ffsparser.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 += uefifind.h \
|
|
../common/basetypes.h \
|
|
../common/descriptor.h \
|
|
../common/gbe.h \
|
|
../common/me.h \
|
|
../common/ffs.h \
|
|
../common/nvram.h \
|
|
../common/ffsparser.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/ustring.h \
|
|
../common/ubytearray.h
|
|
|