From 7d66932181e63e89e272d05493ef1284ca4a2295 Mon Sep 17 00:00:00 2001 From: Khairul Azhar Kasmiran Date: Wed, 13 Mar 2024 19:56:44 +0800 Subject: [PATCH] Try using `install: true` instead --- meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index 3d6214c..dfcfc16 100644 --- a/meson.build +++ b/meson.build @@ -117,7 +117,7 @@ if target_swig '-python', '-c++', '-outdir', '@OUTDIR@', '@INPUT@' ], - install: host_machine.system() == 'windows', + install: true, # host_machine.system() == 'windows', install_dir: [py.get_install_dir(), false] ) swig_py = swig_output[0] @@ -134,7 +134,7 @@ if target_swig py.dependency(), rz_core, ], - install: host_machine.system() == 'windows', + install: true, # host_machine.system() == 'windows', ) if host_machine.system() != 'windows' meson.add_install_script('py_install.py', swig_py.full_path(), ext_mod.full_path())