From 6bcd9d2e694f0c14277b229bac0055397249765f Mon Sep 17 00:00:00 2001 From: Emily Boudreaux Date: Mon, 5 May 2025 12:00:08 -0400 Subject: [PATCH] build(build-python): added sources for const and global module build-python meson.build includes (and must include) all relevant source --- build-python/meson.build | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-python/meson.build b/build-python/meson.build index bd87563..b7adeae 100644 --- a/build-python/meson.build +++ b/build-python/meson.build @@ -4,10 +4,13 @@ py_installation = import('python').find_installation('python3') py_mod = py_installation.extension_module( 'fourdsse_bindings', # Name of the generated .so/.pyd file (without extension) sources: [ + meson.project_source_root() + '/src/python/bindings.cpp', meson.project_source_root() + '/src/python/composition/bindings.cpp', + meson.project_source_root() + '/src/python/const/bindings.cpp', ], dependencies : [ pybind11_dep, + const_dep, composition_dep, species_weight_dep ],