windows property

Configuration provided when CodeConfig.targetOS is OS.windows.

Implementation

WindowsCCompilerConfig get windows => switch (_windows) {
  null => throw StateError(
    'Cannot access windows if CodeConfig.targetOS is not Windows',
  ),
  final c => c,
};