C++ sandbox project
- A compiler supporting C++17.
- CMake v3.10 or higher.
Navigate to the project root.
Create a build directory and navigate to it:
mkdir build && cd buildBuild the project:
cmake ..Then, in the same directory:
makeTo compile only a specific executable:
make ExecutableNamee.g.,
make IncrementAndDecrementOperatorscd to the directory of the example:
cd ./sections/sectionXX/YY_ExecutableNamee.g.,
cd ./sections/section01/02_DataTypesRun the executable:
./ExecutableNamee.g.,
./DataTypes
