From b2fbc59ef2e770a0520b13abb29fa39e44f1198e Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Thu, 28 Dec 2023 00:00:43 +0200 Subject: [PATCH] Add headers to the library component so dependencies work correctly Without this builder does not realize that codec.h is needed by vorbisfile.h and needs to be installed. --- Build | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Build b/Build index 7294b22..cb25730 100644 --- a/Build +++ b/Build @@ -61,7 +61,10 @@ package "vorbisfile" library "vorbisfile" { - source "lib/vorbisfile.c"; + source "lib/vorbisfile.c"; + source "include/vorbis/codec.h"; + source "include/vorbis/vorbisenc.h"; + source "include/vorbis/vorbisfile.h"; if_arch "windows" { source "win32/vorbisfile.def"; -- 2.43.0