-
Clone the repository:
git clone https://github.com/yourusername/cpp20_template.git cd cpp20_template -
Configure the project:
meson setup buildThis will create a build directory with the necessary build files.
- Build the project:
meson compile -C buildThis will compile all the .cpp files in the src directory and generate corresponding executables.
- Run the executables:
Each .cpp file with a main function will generate an executable. You can run them individually:
./build/main1
./build/main2
./build/main3