Simple starter C++ project with:
- cmake
- googletest
- boost
- vscode integration (ycmd / cmaketools)
- Checkout the repo (and submodules)
$ git clone --recursive https://github.com/xwvvvvwx/cpp-boilerplate.git
- Install boost
$ cd vendor/boost
$ bash ./bootstrap.sh
$ ./b2
- Comes with YouCompleteMe integration preconfigured, but you will need to point vscode to an installation:
// .vscode/settings.json
{
...
"ycmd.path": "<YOUR_PATH_HERE>",
...
}