17 lines
442 B
Meson
17 lines
442 B
Meson
|
|
# Define the library
|
||
|
|
bindings_sources = files('bindings.cpp')
|
||
|
|
|
||
|
|
dependencies = [
|
||
|
|
composition_dep,
|
||
|
|
species_weight_dep,
|
||
|
|
python3_dep,
|
||
|
|
pybind11_dep,
|
||
|
|
]
|
||
|
|
|
||
|
|
libPYcomposition = shared_module('py_composition',
|
||
|
|
bindings_sources,
|
||
|
|
cpp_args: ['-fvisibility=default'],
|
||
|
|
install : true,
|
||
|
|
dependencies: dependencies,
|
||
|
|
)
|