2014-04-22 09:24:24 +08:00
|
|
|
QT += core
|
|
|
|
QT -= gui
|
|
|
|
|
|
|
|
TARGET = UEFIExtract
|
|
|
|
TEMPLATE = app
|
|
|
|
CONFIG += console
|
2014-06-20 00:26:29 +08:00
|
|
|
CONFIG -= app_bundle
|
2014-05-04 03:31:12 +08:00
|
|
|
DEFINES += _CONSOLE
|
2014-04-22 09:24:24 +08:00
|
|
|
|
|
|
|
SOURCES += uefiextract_main.cpp \
|
|
|
|
uefiextract.cpp \
|
|
|
|
../types.cpp \
|
|
|
|
../descriptor.cpp \
|
|
|
|
../ffs.cpp \
|
|
|
|
../ffsengine.cpp \
|
2015-02-07 01:17:50 +08:00
|
|
|
../peimage.cpp \
|
2014-04-22 09:24:24 +08:00
|
|
|
../treeitem.cpp \
|
|
|
|
../treemodel.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 \
|
2014-11-11 01:54:28 +08:00
|
|
|
../Tiano/EfiTianoCompress.c \
|
|
|
|
../Tiano/EfiTianoCompressLegacy.c
|
2014-04-22 09:24:24 +08:00
|
|
|
|
|
|
|
HEADERS += uefiextract.h \
|
|
|
|
../basetypes.h \
|
|
|
|
../descriptor.h \
|
|
|
|
../gbe.h \
|
|
|
|
../me.h \
|
|
|
|
../ffs.h \
|
|
|
|
../peimage.h \
|
|
|
|
../types.h \
|
|
|
|
../ffsengine.h \
|
|
|
|
../treeitem.h \
|
|
|
|
../treemodel.h \
|
|
|
|
../LZMA/LzmaCompress.h \
|
|
|
|
../LZMA/LzmaDecompress.h \
|
|
|
|
../Tiano/EfiTianoDecompress.h \
|
|
|
|
../Tiano/EfiTianoCompress.h
|
2014-05-04 03:31:12 +08:00
|
|
|
|