C++ project template.
Docker is used to provide the same environment for development.
./docker/docker_run.sh
VSCode DevContainers can automatically start docker with development environment. It requires DevContainers extension. In order to start the container, you need to execute Ctrl+Shift+P > DevContainers: Rebuild container.
CMake is used as build system for the project.
mkdir -p build
cd build
cmake ..
cmake --build .Run the produced executable (name matches project):
./cpp-project-template