You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
310 B
23 lines
310 B
---
|
|
layout: default
|
|
title: Quickstart
|
|
permalink: /examples/quickstart
|
|
parent: Examples
|
|
nav_order: 1
|
|
---
|
|
|
|
# Quickstart
|
|
|
|
Smallest possible start point you can have using cmkr
|
|
|
|
```toml
|
|
[cmake]
|
|
version = "3.15"
|
|
|
|
[project]
|
|
name = "hello-world"
|
|
|
|
[target.hello-world]
|
|
type = "executable"
|
|
sources = [ "src/*.cpp" ]
|
|
``` |