WindowsConfig constructor
const
WindowsConfig({
- String cmake = 'cmake',
- bool dynamicCrt = true,
- bool bundleCrt = true,
- String? vsInstallPath,
- String? architecture,
- CmakeGenerator? generator,
- String? generatorPath,
- List<
String> extraDefines = const [], - WindowsCompiler compiler = WindowsCompiler.msvc,
- String? clangClPath,
- String? msys2Path,
- bool staticRuntime = true,
Implementation
const WindowsConfig({
this.cmake = 'cmake',
this.dynamicCrt = true,
this.bundleCrt = true,
this.vsInstallPath,
String? architecture,
this.generator,
this.generatorPath,
this.extraDefines = const [],
this.compiler = WindowsCompiler.msvc,
this.clangClPath,
this.msys2Path,
this.staticRuntime = true,
}) : _architectureOverride = architecture;