WindowsConfig constructor

const WindowsConfig({
  1. String cmake = 'cmake',
  2. bool dynamicCrt = true,
  3. bool bundleCrt = true,
  4. String? vsInstallPath,
  5. String? architecture,
  6. CmakeGenerator? generator,
  7. String? generatorPath,
  8. List<String> extraDefines = const [],
  9. WindowsCompiler compiler = WindowsCompiler.msvc,
  10. String? clangClPath,
  11. String? msys2Path,
  12. 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;