- Lua 5.4.3
- cmake 3.20.1
Testing setup build to run lua executes, lib and dll files. CMake will build the files base on compile tool and get the src file download by using FetchContent.
By Using the cmake command builds.
There are two which can be downloaded. Github lua and the other is their main website lua.org.
:: Create a build directory
mkdir build
:: change build directory and get CMakeLists.txt config.
cd build && cmake ..
:: Build the project by default tool compiler to current hardware
cmake --build . build/Debug
* lua.exe
* lua.lib
* lua.dll
* luac.exe
* etc...
- https://github.com/walterschell/Lua
- https://gist.github.com/baiyanhuang/4054106
- https://github.com/lua/lua
- https://www.lua.org/
- https://cmake.org/cmake/help/latest/module/FindLua.html
- Lua 5.4.3 github missing one luac.c file to run execute program.
- VS2019 Window 10 64 Bit.