feat(pythonInterface/network): added network interface from python module
This commit is contained in:
17
src/python/network/meson.build
Normal file
17
src/python/network/meson.build
Normal file
@@ -0,0 +1,17 @@
|
||||
# Define the library
|
||||
bindings_sources = files('bindings.cpp')
|
||||
bindings_headers = files('bindings.h')
|
||||
|
||||
dependencies = [
|
||||
python3_dep,
|
||||
pybind11_dep,
|
||||
network_dep,
|
||||
]
|
||||
|
||||
shared_module('py_network',
|
||||
bindings_sources,
|
||||
include_directories: include_directories('.'),
|
||||
cpp_args: ['-fvisibility=default'],
|
||||
install : true,
|
||||
dependencies: dependencies,
|
||||
)
|
||||
Reference in New Issue
Block a user