From be4aaf7b849a64d67756c95b6270b9bfe47f3c7d Mon Sep 17 00:00:00 2001 From: Daniel Breedeveld Date: Sat, 23 Sep 2023 20:06:02 +0800 Subject: [PATCH] Fix Header filename mismatch causing ffigen to produce empty output (#141) --- pkgs/native_assets_cli/example/native_add_library/ffigen.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/native_assets_cli/example/native_add_library/ffigen.yaml b/pkgs/native_assets_cli/example/native_add_library/ffigen.yaml index 6711c54d7..4b32465b7 100644 --- a/pkgs/native_assets_cli/example/native_add_library/ffigen.yaml +++ b/pkgs/native_assets_cli/example/native_add_library/ffigen.yaml @@ -7,9 +7,9 @@ description: | output: 'lib/native_add_library.dart' headers: entry-points: - - 'src/native_add.h' + - 'src/native_add_library.h' include-directives: - - 'src/native_add.h' + - 'src/native_add_library.h' preamble: | // 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