From e181c045072d9579f10763644e8b4cae24026e41 Mon Sep 17 00:00:00 2001 From: Ross Smyth Date: Mon, 10 Mar 2025 16:00:38 -0400 Subject: [PATCH] Fix meson pkg-config generation The pkg-config file does not include the subdir in its build flags, so files will fail to find the Unity headers. --- meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/meson.build b/meson.build index 6585129c..d68f20da 100644 --- a/meson.build +++ b/meson.build @@ -67,6 +67,7 @@ if not meson.is_subproject() name: meson.project_name(), version: meson.project_version(), libraries: [ unity_lib ], + subdirs: 'unity', description: 'C Unit testing framework.' ) endif