parent
153bdbe591
commit
981c48dbc5
@ -0,0 +1,27 @@
|
||||
---
|
||||
# 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,11 @@
|
||||
# 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
|
||||
|
@ -0,0 +1,5 @@
|
||||
#include <cstdio>
|
||||
|
||||
int main() {
|
||||
puts("Hello from cmkr(msvc-static)!");
|
||||
}
|
Loading…
Reference in new issue