Skip to content

Commit

Permalink
Ensure "cython" is installed before running "meson configure".
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-rapp committed Dec 14, 2024
1 parent bdce678 commit 9be315c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build_system/targets/compilation/cython/targets.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,9 @@ def __init__(self):

def run(self, build_unit: BuildUnit, module: Module):
Log.info('Compiling Cython code in directory "%s"...', module.root_directory)
MesonConfigure(build_unit, module, build_options=BUILD_OPTIONS)
MesonConfigure(build_unit, module, build_options=BUILD_OPTIONS) \
.add_dependencies('cython') \
.run()
MesonCompile(build_unit, module).run()


Expand Down

0 comments on commit 9be315c

Please sign in to comment.