WindowsConfig constructor

const WindowsConfig({
  1. String cmake = 'cmake',
  2. bool dynamicCrt = true,
  3. bool bundleCrt = true,
  4. String? vsInstallPath,
  5. String architecture = 'x64',
  6. CmakeGenerator? generator,
  7. String? generatorPath,
  8. List<String> extraDefines = const [],
})

Implementation

const WindowsConfig({
  this.cmake = 'cmake',
  this.dynamicCrt = true,
  this.bundleCrt = true,
  this.vsInstallPath,
  this.architecture = 'x64',
  this.generator,
  this.generatorPath,
  this.extraDefines = const [],
});