mirror of
https://github.com/build-cpp/cmkr
synced 2026-06-08 13:22:55 +00:00
1deaec2b41
Closes #112
16 lines
362 B
TOML
16 lines
362 B
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"
|