feat(python/const): added constants bindings

constants module can now be fully accessed from python
This commit is contained in:
2025-05-05 11:59:24 -04:00
parent 2bf58671a0
commit 1ed0e9cde1
3 changed files with 61 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
# Define the library
bindings_sources = files('bindings.cpp')
bindings_headers = files('bindings.h')
dependencies = [
const_dep,
python3_dep,
pybind11_dep,
]
shared_module('py_const',
bindings_sources,
include_directories: include_directories('.'),
cpp_args: ['-fvisibility=default'],
install : true,
dependencies: dependencies,
)