| // Copyright (c) 2023, the Dart project authors. Please see the AUTHORS file |
| // for details. All rights reserved. Use of this source code is governed by a |
| // BSD-style license that can be found in the LICENSE file. |
| |
| import 'dart:io'; |
| |
| import 'package:hooks/hooks.dart'; |
| import 'package:native_toolchain_c/native_toolchain_c.dart'; |
| |
| void main(List<String> arguments) async { |
| await build(arguments, (input, output) async { |
| final packageName = input.packageName; |
| final cbuilder = CBuilder.library( |
| name: packageName, |
| assetName: 'src/${packageName}_bindings_generated.dart', |
| sources: ['src/$packageName.c'], |
| ); |
| await cbuilder.run(input: input, output: output); |
| stdout.writeln('Some stdout.'); |
| stderr.writeln('Some stderr.'); |
| }); |
| } |