Technical requirements
Starting from this chapter, we will focus more on code and Lua integration itself and will be brief about toolchain and project settings. However, you can always refer to the book’s GitHub repository to get the complete projects. Please make sure you meet the following requirements:
- You need to be able to compile the Lua library from source code. Chapter 1 covered this.
- You need to be able to write some basic Lua code to test the C++ class that we will write. Chapter 2 covered this.
- You can create a
Makefile
project, or use an alternative. In Chapter 1, we created threeMakefile
projects. We will create a new project for this chapter. - You can access the source code for this chapter here: https://github.com/PacktPublishing/Integrate-Lua-with-CPP/tree/main/Chapter03