内置源码编译LUA

This commit is contained in:
xx
2024-06-03 21:32:29 +08:00
parent d7594a2ee8
commit 77480ff466
73 changed files with 1617 additions and 11420 deletions

9
3rdparty/lua/include/lua.hpp vendored Normal file
View File

@@ -0,0 +1,9 @@
// 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"
}