mirror of
https://github.com/LongSoft/UEFITool.git
synced 2024-11-23 00:18:23 +08:00
9045fc6cc0
- added UEFIDump tool, which is now Windows-only UEFIExtract with some limitations, made as PoC for non-Qt engine usage - ensured that Qt classes will be used, if available - checked build of UT and UE - porting of UEFIFind to non-Qt engine TBD
49 lines
1.1 KiB
CMake
49 lines
1.1 KiB
CMake
PROJECT(UEFIDump)
|
|
|
|
SET(PROJECT_SOURCES
|
|
uefidump_main.cpp
|
|
uefidump.cpp
|
|
../common/types.cpp
|
|
../common/descriptor.cpp
|
|
../common/ffs.cpp
|
|
../common/nvram.cpp
|
|
../common/ffsparser.cpp
|
|
../common/ffsreport.cpp
|
|
../common/fitparser.cpp
|
|
../common/peimage.cpp
|
|
../common/treeitem.cpp
|
|
../common/treemodel.cpp
|
|
../common/utility.cpp
|
|
../common/LZMA/LzmaDecompress.c
|
|
../common/LZMA/SDK/C/LzmaDec.c
|
|
../common/Tiano/EfiTianoDecompress.c
|
|
../common/ustring.cpp
|
|
../bstrlib/bstrlib.c
|
|
../bstrlib/bstrwrap.cpp
|
|
)
|
|
|
|
SET(PROJECT_HEADERS
|
|
uefidump.h
|
|
../common/basetypes.h
|
|
../common/descriptor.h
|
|
../common/gbe.h
|
|
../common/me.h
|
|
../common/ffs.h
|
|
../common/nvram.h
|
|
../common/ffsparser.h
|
|
../common/ffsreport.h
|
|
../common/fitparser.h
|
|
../common/peimage.h
|
|
../common/types.h
|
|
../common/treeitem.h
|
|
../common/treemodel.h
|
|
../common/utility.h
|
|
../common/LZMA/LzmaDecompress.h
|
|
../common/Tiano/EfiTianoDecompress.h
|
|
../common/ubytearray.h
|
|
../common/ustring.h
|
|
../bstrlib/bstrlib.h
|
|
../bstrlib/bstrwrap.h
|
|
)
|
|
|
|
ADD_EXECUTABLE(UEFIDump ${PROJECT_SOURCES} ${PROJECT_HEADERS}) |