2015-04-02 16:04:37 +08:00
|
|
|
QT += core
|
|
|
|
QT -= gui
|
|
|
|
|
|
|
|
TARGET = UEFIExtract
|
|
|
|
TEMPLATE = app
|
|
|
|
CONFIG += console
|
|
|
|
CONFIG -= app_bundle
|
2016-10-10 14:05:04 +08:00
|
|
|
DEFINES += "U_ENABLE_NVRAM_PARSING_SUPPORT"
|
2015-04-02 16:04:37 +08:00
|
|
|
|
2016-06-26 11:54:21 +08:00
|
|
|
SOURCES += \
|
|
|
|
uefiextract_main.cpp \
|
2015-04-02 16:04:37 +08:00
|
|
|
ffsdumper.cpp \
|
2017-02-14 14:39:16 +08:00
|
|
|
../common/guiddatabase.cpp \
|
2015-04-02 16:04:37 +08:00
|
|
|
../common/types.cpp \
|
|
|
|
../common/descriptor.cpp \
|
|
|
|
../common/ffs.cpp \
|
2016-04-21 02:42:30 +08:00
|
|
|
../common/nvram.cpp \
|
2016-10-10 14:05:04 +08:00
|
|
|
../common/nvramparser.cpp \
|
2015-04-02 16:04:37 +08:00
|
|
|
../common/ffsparser.cpp \
|
2016-06-25 18:22:28 +08:00
|
|
|
../common/ffsreport.cpp \
|
2015-04-02 16:04:37 +08:00
|
|
|
../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 \
|
2016-07-07 13:57:45 +08:00
|
|
|
../common/ustring.cpp
|
2015-04-02 16:04:37 +08:00
|
|
|
|
2016-06-26 11:54:21 +08:00
|
|
|
HEADERS += \
|
|
|
|
ffsdumper.h \
|
2017-02-14 14:39:16 +08:00
|
|
|
../common/guiddatabase.h \
|
2015-04-02 16:04:37 +08:00
|
|
|
../common/basetypes.h \
|
|
|
|
../common/descriptor.h \
|
|
|
|
../common/gbe.h \
|
|
|
|
../common/me.h \
|
|
|
|
../common/ffs.h \
|
2016-04-21 02:50:07 +08:00
|
|
|
../common/nvram.h \
|
2016-10-10 14:05:04 +08:00
|
|
|
../common/nvramparser.h \
|
2015-04-02 16:04:37 +08:00
|
|
|
../common/ffsparser.h \
|
2016-06-25 18:22:28 +08:00
|
|
|
../common/ffsreport.h \
|
2015-04-02 16:04:37 +08:00
|
|
|
../common/peimage.h \
|
|
|
|
../common/types.h \
|
|
|
|
../common/treeitem.h \
|
|
|
|
../common/treemodel.h \
|
|
|
|
../common/utility.h \
|
|
|
|
../common/LZMA/LzmaDecompress.h \
|
2016-06-26 11:54:21 +08:00
|
|
|
../common/Tiano/EfiTianoDecompress.h \
|
|
|
|
../common/ubytearray.h \
|
2016-07-07 13:57:45 +08:00
|
|
|
../common/ustring.h
|
2015-04-02 16:04:37 +08:00
|
|
|
|