2014-06-19 11:45:20 +08:00
|
|
|
QT += core
|
|
|
|
QT -= gui
|
|
|
|
|
|
|
|
TARGET = UEFIPatch
|
|
|
|
TEMPLATE = app
|
|
|
|
CONFIG += console
|
2014-06-20 00:25:52 +08:00
|
|
|
CONFIG -= app_bundle
|
2014-06-19 13:18:59 +08:00
|
|
|
DEFINES += _CONSOLE
|
2014-06-19 11:45:20 +08:00
|
|
|
|
|
|
|
SOURCES += uefipatch_main.cpp \
|
|
|
|
uefipatch.cpp \
|
|
|
|
../types.cpp \
|
|
|
|
../descriptor.cpp \
|
|
|
|
../ffs.cpp \
|
|
|
|
../ffsengine.cpp \
|
2015-02-07 01:17:50 +08:00
|
|
|
../peimage.cpp \
|
2014-06-19 11:45:20 +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-06-19 11:45:20 +08:00
|
|
|
|
|
|
|
HEADERS += uefipatch.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-06-19 13:18:59 +08:00
|
|
|
|