Qt: Add Lua to report view

This commit is contained in:
Vicki Pfau 2022-06-10 20:59:27 -07:00
parent c12fa581b3
commit d2ac7c4ca0
1 changed files with 9 additions and 0 deletions

View File

@ -61,6 +61,10 @@
#include <zip.h>
#endif
#ifdef USE_LUA
#include <lua.h>
#endif
#ifdef USE_LZMA
#include <7zVersion.h>
#endif
@ -168,6 +172,11 @@ void ReportView::generateReport() {
#else
swReport << QString("libLZMA not linked");
#endif
#ifdef USE_LUA
swReport << QString("Lua version: %1").arg(QLatin1String(LUA_RELEASE));
#else
swReport << QString("Lua not linked");
#endif
#ifdef USE_MINIZIP
swReport << QString("minizip linked");
#else