CmakeBuildStep constructor

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

Implementation

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