Files
build-cpp-cmkr/tests/msvc-runtime/cmake.toml
T
2022-10-07 17:46:36 +02:00

15 lines
361 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"