An open API service indexing awesome lists of open source software.

https://github.com/willdoescode/bubbles

Bubbles: simple and expandable c++ project template with googletest and boost included
https://github.com/willdoescode/bubbles

cpp cpp-templates cpptemplate hacktoberfest template

Last synced: about 1 month ago
JSON representation

Bubbles: simple and expandable c++ project template with googletest and boost included

Awesome Lists containing this project

README

        

# Bubbles: A simple and expandable C++ project template with [Googletest](https://github.com/google/googletest) and [Boost](https://www.boost.org/) included.

## Setup

```console
$ git clone https://willdoescode/bubbles
$ pwd
```

Copy pwd output to your [ctp](https://github.com/willdoescode/ctp) config.

```toml
[templates]
cpp = ""

[commands-before]
[commands-after]
cpp = "rm .git"
```

## Building && Testing

```console
$ cmake -S . -B build

$ cmake --build build
```