Files
build-cpp-cmkr/docs/examples/cpp-version-change.markdown
T
Luiz "darknessxk" Felipe 8697d87e50 Fixed wrong permalinks
2021-05-13 03:29:41 +02:00

18 lines
324 B
Markdown

---
layout: default
title: Changing C/C++ version
permalink: /examples/cpp-version-change
parent: Examples
nav_order: 3
---
# Changing C/C++ version
Simple example changing C++ to version 20 and C standard to the version 11
```toml
[target.example]
type = "executable"
compile-features = [ "cxx_std_20", "c_std_11" ]
```