Skip to content

Commit

Permalink
Try using install: true instead
Browse files Browse the repository at this point in the history
  • Loading branch information
kazarmy committed Mar 13, 2024
1 parent 1fcdb62 commit 7d66932
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand All @@ -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())
Expand Down

0 comments on commit 7d66932

Please sign in to comment.