From 519b7328b66c4c84f03893a31e4be5ba6b1395f2 Mon Sep 17 00:00:00 2001 From: mitchell Date: Sun, 11 Mar 2018 23:04:41 -0400 Subject: Added optional Lua lexer support. This support is disabled by default and must be enabled via compile-time option. --- lua/src/lua.hpp | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 lua/src/lua.hpp (limited to 'lua/src/lua.hpp') diff --git a/lua/src/lua.hpp b/lua/src/lua.hpp new file mode 100644 index 000000000..ec417f594 --- /dev/null +++ b/lua/src/lua.hpp @@ -0,0 +1,9 @@ +// lua.hpp +// Lua header files for C++ +// <> not supplied automatically because Lua also compiles as C++ + +extern "C" { +#include "lua.h" +#include "lualib.h" +#include "lauxlib.h" +} -- cgit v1.2.3