From a176fa1d346c5d1bfb935dc870509b6fe6005d89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20Trevisan=20=28Trevi=C3=B1o=29?= Date: Wed, 4 Dec 2019 13:34:14 +0100 Subject: [PATCH] meson: Include fpi-context.h in generated fp-drivers.c --- meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/meson.build b/meson.build index 09abc1f..265ce30 100644 --- a/meson.build +++ b/meson.build @@ -118,6 +118,7 @@ endforeach # Export the drivers' types to the core code drivers_type_list = '#include \n' +drivers_type_list += '#include "fpi-context.h"\n' drivers_type_func = 'void fpi_get_driver_types(GArray *drivers)\n{\n\tGType t;\n' foreach driver: drivers drivers_type_list += 'extern GType (fpi_device_' + driver + '_get_type) (void);\n'