mirror of
https://github.com/LongSoft/UEFITool.git
synced 2024-11-21 23:48:22 +08:00
4afe74850d
Initial public commit
34 lines
953 B
Prolog
34 lines
953 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 \
|
|
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/EfiCompress.c \
|
|
Tiano/TianoCompress.c
|
|
HEADERS += uefitool.h \
|
|
basetypes.h \
|
|
descriptor.h \
|
|
ffs.h \
|
|
treeitem.h \
|
|
treemodel.h \
|
|
LZMA/LzmaCompress.h \
|
|
LZMA/LzmaDecompress.h \
|
|
Tiano/EfiTianoDecompress.h \
|
|
Tiano/EfiTianoCompress.h
|
|
FORMS += uefitool.ui
|
|
RC_FILE = uefitool.rc
|
|
|
|
|
|
ICON = uefitool.icns |