2025-04-30 11:41:10 -04:00
|
|
|
# Define the library
|
|
|
|
|
bindings_sources = files('bindings.cpp')
|
2025-05-05 12:01:55 -04:00
|
|
|
bindings_headers = files('bindings.h')
|
2025-04-30 11:41:10 -04:00
|
|
|
|
|
|
|
|
dependencies = [
|
|
|
|
|
composition_dep,
|
|
|
|
|
python3_dep,
|
|
|
|
|
pybind11_dep,
|
|
|
|
|
]
|
|
|
|
|
|
2025-05-05 12:01:55 -04:00
|
|
|
shared_module('py_composition',
|
|
|
|
|
bindings_sources,
|
|
|
|
|
cpp_args: ['-fvisibility=default'],
|
|
|
|
|
install : true,
|
|
|
|
|
dependencies: dependencies,
|
|
|
|
|
include_directories: include_directories('.')
|
|
|
|
|
)
|