mirror of
https://github.com/LongSoft/UEFITool.git
synced 2024-11-22 16:08:23 +08:00
3c90bc4a61
- Debug window upgrade - Volume grow for non-root volumes - Minor bugfix
40 lines
1020 B
Prolog
40 lines
1020 B
Prolog
QT += core gui
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
|
|
|
TARGET = UEFITool
|
|
TEMPLATE = app
|
|
|
|
SOURCES += main.cpp \
|
|
uefitool.cpp \
|
|
descriptor.cpp \
|
|
ffs.cpp \
|
|
ffsengine.cpp \
|
|
treeitem.cpp \
|
|
treemodel.cpp \
|
|
debuglistitem.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/EfiCompress.c \
|
|
Tiano/TianoCompress.c
|
|
HEADERS += uefitool.h \
|
|
basetypes.h \
|
|
descriptor.h \
|
|
gbe.h \
|
|
me.h \
|
|
ffs.h \
|
|
ffsengine.h \
|
|
treeitem.h \
|
|
treemodel.h \
|
|
debuglistitem.h \
|
|
LZMA/LzmaCompress.h \
|
|
LZMA/LzmaDecompress.h \
|
|
Tiano/EfiTianoDecompress.h \
|
|
Tiano/EfiTianoCompress.h
|
|
FORMS += uefitool.ui
|
|
RC_FILE = uefitool.rc
|
|
ICON = uefitool.icns
|