mirror of
https://github.com/LongSoft/UEFITool.git
synced 2024-11-22 07:58:22 +08:00
4988ea8a9f
- added UEFIFind utility to find a count or a list of FFS files with a specified pattern. The utility is developed for UBU Project.
43 lines
851 B
Prolog
43 lines
851 B
Prolog
QT += core
|
|
QT -= gui
|
|
|
|
TARGET = UEFIFind
|
|
TEMPLATE = app
|
|
CONFIG += console
|
|
CONFIG -= app_bundle
|
|
DEFINES += _CONSOLE _DISABLE_ENGINE_MESSAGES
|
|
|
|
SOURCES += uefifind_main.cpp \
|
|
uefifind.cpp \
|
|
../types.cpp \
|
|
../descriptor.cpp \
|
|
../ffs.cpp \
|
|
../ffsengine.cpp \
|
|
../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 \
|
|
../Tiano/EfiTianoCompress.c \
|
|
../Tiano/EfiTianoCompressLegacy.c
|
|
|
|
HEADERS += uefifind.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
|
|
|