You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
362 B
16 lines
362 B
[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"
|