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

https://github.com/hugsy/modern-cpp-template

A template repository for my C++ projects, with docs and CI
https://github.com/hugsy/modern-cpp-template

cmake cplusplus cplusplus-23

Last synced: 2 months ago
JSON representation

A template repository for my C++ projects, with docs and CI

Awesome Lists containing this project

README

        

# ChangeMe

### Start

- with [`gh`](https://github.com/cli/cli) (preferred)

```console
gh repo create ChangeMe --template hugsy/modern-cpp-template --clone # --private
```

- with `git`
```console
git clone --depth 1 -q https://github.com/hugsy/modern-cpp-template ChangeMe
```

### Configure

Replace all `ChangeMe` values

```console
cd ChangeMe
```

Then
```console
cmake -S . -B build -T host=x64 -A x64
cmake --build build
```

### Build

```console
cmake --build ./build
```