mirror of
https://github.com/LongSoft/UEFITool.git
synced 2024-11-22 16:08:23 +08:00
59a6f298ee
- required to set fixed properly
47 lines
997 B
Prolog
47 lines
997 B
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/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/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
|
|
|