mirror of https://github.com/mgba-emu/mgba.git
Qt: Add Lua to report view
This commit is contained in:
parent
c12fa581b3
commit
d2ac7c4ca0
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue