This repository goes over some of the basics of stacks.
You can use CMake to compile and build the executables for the project. First, you need to create a build/ directory in the project. The build directory will house all of the compiled files as well as the Makefile for the project. Note that we do NOT check the build/ directory into version control since each person will have to regenerate the executables on their own machine.
mkdir build
cd buildOnce you are inside of the build directory, you can run the following command to build all of the executables for the project:
cmake .. && makeMany IDEs like CLion and Visual Studio have built-in support for CMake. You should be able to open the project and the IDE will automatically detect the CMakeLists.txt file. Then, the IDE will build all of the artifacts listed in the file.