parent
af9a117f50
commit
69d844a152
@ -0,0 +1,34 @@
|
||||
---
|
||||
# Automatically generated from tests/msvc-runtime/cmake.toml - DO NOT EDIT
|
||||
layout: default
|
||||
title: Static MSVC runtime
|
||||
permalink: /examples/msvc-runtime
|
||||
parent: Examples
|
||||
nav_order: 8
|
||||
---
|
||||
|
||||
# Static MSVC runtime
|
||||
|
||||
|
||||
|
||||
```toml
|
||||
[project]
|
||||
name = "msvc-runtime"
|
||||
description = "Static MSVC runtime"
|
||||
msvc-runtime = "static"
|
||||
|
||||
# This target will compile with a static runtime
|
||||
[target.static-runtime]
|
||||
type = "executable"
|
||||
sources = ["src/main.cpp"]
|
||||
|
||||
# This target overrides the [project].msvc-runtime
|
||||
[target.dynamic-runtime]
|
||||
type = "executable"
|
||||
sources = ["src/main.cpp"]
|
||||
msvc-runtime = "dynamic"
|
||||
```
|
||||
|
||||
|
||||
|
||||
<sup><sub>This page was automatically generated from [tests/msvc-runtime/cmake.toml](https://github.com/build-cpp/cmkr/tree/main/tests/msvc-runtime/cmake.toml).</sub></sup>
|
@ -1,27 +0,0 @@
|
||||
---
|
||||
# Automatically generated from tests/msvc-static/cmake.toml - DO NOT EDIT
|
||||
layout: default
|
||||
title: msvc static
|
||||
permalink: /examples/msvc-static
|
||||
parent: Examples
|
||||
nav_order: 8
|
||||
---
|
||||
|
||||
# msvc static
|
||||
|
||||
A msvc-static `cmake.toml` project:
|
||||
|
||||
```toml
|
||||
[project]
|
||||
name = "msvc-static"
|
||||
description = "msvc static"
|
||||
|
||||
[target.basic]
|
||||
type = "executable"
|
||||
sources = ["src/msvc-static.cpp"]
|
||||
msvc-static = true
|
||||
```
|
||||
|
||||
|
||||
|
||||
<sup><sub>This page was automatically generated from [tests/msvc-static/cmake.toml](https://github.com/build-cpp/cmkr/tree/main/tests/msvc-static/cmake.toml).</sub></sup>
|
@ -0,0 +1,15 @@
|
||||
[project]
|
||||
name = "msvc-runtime"
|
||||
description = "Static MSVC runtime"
|
||||
msvc-runtime = "static"
|
||||
|
||||
# This target will compile with a static runtime
|
||||
[target.static-runtime]
|
||||
type = "executable"
|
||||
sources = ["src/main.cpp"]
|
||||
|
||||
# This target overrides the [project].msvc-runtime
|
||||
[target.dynamic-runtime]
|
||||
type = "executable"
|
||||
sources = ["src/main.cpp"]
|
||||
msvc-runtime = "dynamic"
|
@ -1,11 +0,0 @@
|
||||
# A msvc-static `cmake.toml` project:
|
||||
|
||||
[project]
|
||||
name = "msvc-static"
|
||||
description = "msvc static"
|
||||
|
||||
[target.basic]
|
||||
type = "executable"
|
||||
sources = ["src/msvc-static.cpp"]
|
||||
msvc-static = true
|
||||
|
Loading…
Reference in new issue