mirror of
https://github.com/build-cpp/cmkr
synced 2026-06-08 13:22:55 +00:00
17 lines
610 B
Markdown
17 lines
610 B
Markdown
---
|
|
layout: page
|
|
title: Getting started
|
|
permalink: /getting-started/
|
|
nav_order: 1
|
|
---
|
|
|
|
## Getting started
|
|
|
|
The easiest way to get started is to use the [cmkr_for_beginners](https://github.com/build-cpp/cmkr_for_beginners) template repository. Either open it in [Gitpod](https://gitpod.io/#https://github.com/build-cpp/cmkr_for_beginners), or clone the repository and run:
|
|
|
|
```sh
|
|
cmake -B build
|
|
cmake --build build
|
|
```
|
|
|
|
Alternatively you can check out the [cmkr topic](https://github.com/topics/cmkr) or the [build-cpp organization](https://github.com/build-cpp) for more examples and templates. |