CmakeBuildStep constructor

const CmakeBuildStep({
  1. String id = 'cmake_build',
  2. String execution = 'target',
  3. required String buildDirectory,
  4. List<String> targets = const [],
  5. bool parallel = true,
  6. Map<String, String>? environment,
  7. ProcessRunnerInterface? runner,
})

Implementation

const CmakeBuildStep({
  this.id = 'cmake_build',
  this.execution = 'target',
  required this.buildDirectory,
  this.targets = const [],
  this.parallel = true,
  this.environment,
  this.runner,
});