From 6b19edcb663c40ae7130d9ed27285c56db486a82 Mon Sep 17 00:00:00 2001 From: Dmitry Kozlyuk Date: Fri, 8 Jan 2021 05:47:23 +0300 Subject: [PATCH] build: enable pmdinfogen for Windows Remove platform restriction when building drivers. Signed-off-by: Dmitry Kozlyuk Tested-by: Jie Zhou --- drivers/meson.build | 26 ++++++++++++-------------- 1 file changed, 12 insertions(+), 14 deletions(-) diff --git a/drivers/meson.build b/drivers/meson.build index ff5cdb952b..fdf76120ac 100644 --- a/drivers/meson.build +++ b/drivers/meson.build @@ -120,20 +120,18 @@ foreach subpath:subdirs # lib and then running pmdinfogen on the contents of # that lib. The final lib reuses the object files and # adds in the new source file. - if not is_windows - out_filename = lib_name + '.pmd.c' - tmp_lib = static_library('tmp_' + lib_name, - sources, - include_directories: includes, - dependencies: static_deps, - c_args: cflags) - objs += tmp_lib.extract_all_objects() - sources = custom_target(out_filename, - command: [pmdinfo, tmp_lib.full_path(), - '@OUTPUT@', pmdinfogen], - output: out_filename, - depends: [tmp_lib]) - endif + out_filename = lib_name + '.pmd.c' + tmp_lib = static_library('tmp_' + lib_name, + sources, + include_directories: includes, + dependencies: static_deps, + c_args: cflags) + objs += tmp_lib.extract_all_objects() + sources = custom_target(out_filename, + command: [pmdinfo, tmp_lib.full_path(), + '@OUTPUT@', pmdinfogen], + output: out_filename, + depends: [tmp_lib]) # now build the static driver static_lib = static_library(lib_name, -- 2.20.1