Features(Lualib/Lua(Jit)): Lua Version and Static Linking Support (#209)

This commit is contained in:
iThorgrim
2025-01-12 01:35:05 +01:00
committed by GitHub
parent 41c940e680
commit f9fc165c7d
68 changed files with 468 additions and 20321 deletions

10
src/lualib/lua/lua.hpp Normal file
View File

@@ -0,0 +1,10 @@
// lua.hpp
// Lua header files for C++
// <<extern "C">> not supplied automatically because Lua also compiles as C++
extern "C" {
#include "lua.h"
#include "lualib.h"
#include "lauxlib.h"
}