blob: c090bc2faa87e13ab03331d729343b60f82c11d6 [file] [log] [blame]
// Copyright (c) 2026, 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 'package:code_assets/code_assets.dart';
import 'package:hooks/hooks.dart';
import 'package:native_toolchain_c/native_toolchain_c.dart';
void main(List<String> args) async {
await build(args, (input, output) async {
if (input.config.buildCodeAssets) {
final builder = CBuilder.library(
name: 'recursive_invocation',
assetName: 'src/recursive_invocation.dart',
sources: ['src/recursive_invocation.c'],
defines: {
if (input.config.code.targetOS == OS.windows)
// Ensure symbols are exported in dll.
'API': '__declspec(dllexport)',
},
);
await builder.run(input: input, output: output);
}
});
}