This project contains lua
as a submodule. To clone this repository with the Lua submodule run this command.
git clone --recursive [email protected]:swaptr/rlos-cpp-lua.git
To build this project, run the following commands in the root of the directory.
cmake -S . -B build
make -C build
OR if you prefer the classic way.
mkdir build
cd build
cmake ..
make
This will generate a binary for our project exercise
.
This can be run with this following command:
cd exercise
./exercise
Currently works on the following platforms:
- Linux
Swapnil says hello
Value of i: 5
Original value: 5
New value: 10
You can find the complete output in the output file.