It’s not often I have to venture into the Microsoftland development environment, but when I do it always seems to take me a while to get used to their visual projects instead of good ‘ole Makefiles. I’ve been using Lua to extend my C and C++ apps a lot recently, so I suddenly found myself needing to include the Lua static library with a Visual Studio 2010 project.
There are already binary distributions out there, but I like to compile things myself, so I whipped up a Visual Studio 2010 project to compile the Lua static library (lua.lib) the command line interpreter (lua.exe) and the script compiler (luac.exe).
First things first. If you just want a zip file with those three binary files (the library is Visual Studio 2010 compatible), look no further:
- Lua 5.1.4 binaries compiled with VS 2010 (
lua,luac,lua.lib, and necessary headers)
If you want to build Lua 5.1.4 yourself (like me) just grab the most recent copy of the 5.1.4 source code from the Lua website. Next, grab these Visual Studio 2010 project files and solution file:
- Lua 5.1.4 Visual Studio 2010 projects (to build the binaries yourself)
To use the project files, just unzip them into the root directory of your Lua source files (where the README, INSTALL, and COPYRIGHT files are). Then, load up lua-vs2010.sln in Visual Studio 2010. You should see three projects. The first, lualib will build the static library under lib/lua.lib. The second and third, lua and luac will build the Lua interpreter and compiler under bin/lua.exe and bin/luac.exe.
Enjoy!
Hi Bob
I’m trying to build lua514 to use it with luabridge (a bridge between Lua and dot-net). I think this requires a DLL build. I’ll try to do it myself based on your project files, and we’ll see how far I get
–Joe