mirror of
https://github.com/LongSoft/UEFITool.git
synced 2025-05-24 20:14:39 -04:00
62 lines
1.4 KiB
Prolog
62 lines
1.4 KiB
Prolog
QT += core gui
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
|
|
|
TARGET = UEFITool
|
|
TEMPLATE = app
|
|
|
|
SOURCES += uefitool_main.cpp \
|
|
uefitool.cpp \
|
|
searchdialog.cpp \
|
|
messagelistitem.cpp \
|
|
guidlineedit.cpp \
|
|
ffsfinder.cpp \
|
|
ffsops.cpp \
|
|
../common/types.cpp \
|
|
../common/descriptor.cpp \
|
|
../common/ffs.cpp \
|
|
../common/peimage.cpp \
|
|
../common/utility.cpp \
|
|
../common/ffsbuilder.cpp \
|
|
../common/ffsparser.cpp \
|
|
../common/treeitem.cpp \
|
|
../common/treemodel.cpp \
|
|
../common/LZMA/LzmaCompress.c \
|
|
../common/LZMA/LzmaDecompress.c \
|
|
../common/LZMA/SDK/C/LzFind.c \
|
|
../common/LZMA/SDK/C/LzmaDec.c \
|
|
../common/LZMA/SDK/C/LzmaEnc.c \
|
|
../common/Tiano/EfiTianoDecompress.c \
|
|
../common/Tiano/EfiTianoCompress.c \
|
|
../common/Tiano/EfiTianoCompressLegacy.c
|
|
|
|
HEADERS += uefitool.h \
|
|
searchdialog.h \
|
|
messagelistitem.h \
|
|
guidlineedit.h \
|
|
ffsfinder.h \
|
|
ffsops.h \
|
|
../common/basetypes.h \
|
|
../common/descriptor.h \
|
|
../common/gbe.h \
|
|
../common/me.h \
|
|
../common/ffs.h \
|
|
../common/peimage.h \
|
|
../common/types.h \
|
|
../common/utility.h \
|
|
../common/parsingdata.h \
|
|
../common/ffsbuilder.h \
|
|
../common/ffsparser.h \
|
|
../common/treeitem.h \
|
|
../common/treemodel.h \
|
|
../common/LZMA/LzmaCompress.h \
|
|
../common/LZMA/LzmaDecompress.h \
|
|
../common/Tiano/EfiTianoDecompress.h \
|
|
../common/Tiano/EfiTianoCompress.h
|
|
|
|
FORMS += uefitool.ui \
|
|
searchdialog.ui
|
|
|
|
RC_FILE = uefitool.rc
|
|
|
|
ICON = uefitool.icns
|
|
|