A system for running LuaJIT powered FRC and other robots.
The steps here are for a Linux system but should work on any platform with C++ and boost available.
# run the setup/configure command. needs done once.
# called build is where binaries are produced.
meson setup build
# compile it
# the "-C build" is specifying that a sub directory
meson compile -C build
# test it
meson test -C build
Note: the steps above might need additional options on a OSX or Windows, but the general concept is the same