LinuxConfig constructor

const LinuxConfig({
  1. String cmake = 'cmake',
  2. CmakeGenerator? generator,
  3. String? generatorPath,
  4. String? compiler,
  5. String? toolchainFile,
  6. bool staticLibStdCpp = true,
  7. List<String> extraDefines = const [],
})

Implementation

const LinuxConfig({
  this.cmake = 'cmake',
  this.generator,
  this.generatorPath,
  this.compiler,
  this.toolchainFile,
  this.staticLibStdCpp = true,
  this.extraDefines = const [],
});