feat(bindings): ported most bindings over from serif
This commit is contained in:
8
build-config/libcomposition/meson.build
Normal file
8
build-config/libcomposition/meson.build
Normal file
@@ -0,0 +1,8 @@
|
||||
composition_p = subproject('libcomposition', default_options: ['pkg-config=false'])
|
||||
comp_dep = composition_p.get_variable('composition_dep')
|
||||
libcomposition = composition_p.get_variable('libcomposition')
|
||||
spw_dep = composition_p.get_variable('species_weight_dep')
|
||||
composition_dep = [
|
||||
comp_dep,
|
||||
spw_dep,
|
||||
]
|
||||
3
build-config/libconfig/meson.build
Normal file
3
build-config/libconfig/meson.build
Normal file
@@ -0,0 +1,3 @@
|
||||
config_p = subproject('libconfig', default_options:['pkg-config=false'])
|
||||
config_dep = config_p.get_variable('config_dep')
|
||||
libconfig = config_p.get_variable('libconfig')
|
||||
3
build-config/libconstants/meson.build
Normal file
3
build-config/libconstants/meson.build
Normal file
@@ -0,0 +1,3 @@
|
||||
const_p = subproject('libconstants', default_options: ['pkg-config=false'])
|
||||
const_dep = const_p.get_variable('const_dep')
|
||||
libconst = const_p.get_variable('libconst')
|
||||
7
build-config/liblogging/meson.build
Normal file
7
build-config/liblogging/meson.build
Normal file
@@ -0,0 +1,7 @@
|
||||
logging_p = subproject('liblogging', default_options: ['pkg-config=false'])
|
||||
liblogging = logging_p.get_variable('liblogging')
|
||||
|
||||
logging_dep = logging_p.get_variable('logging_dep')
|
||||
quill_dep = logging_p.get_variable('quill_dep')
|
||||
|
||||
log_dep = [logging_dep, quill_dep]
|
||||
5
build-config/meson.build
Normal file
5
build-config/meson.build
Normal file
@@ -0,0 +1,5 @@
|
||||
subdir('libcomposition')
|
||||
subdir('libconfig')
|
||||
subdir('libconstants')
|
||||
subdir('liblogging')
|
||||
subdir('pybind')
|
||||
3
build-config/pybind/meson.build
Normal file
3
build-config/pybind/meson.build
Normal file
@@ -0,0 +1,3 @@
|
||||
pybind11_proj = subproject('pybind11')
|
||||
pybind11_dep = pybind11_proj.get_variable('pybind11_dep')
|
||||
python3_dep = dependency('python3')
|
||||
Reference in New Issue
Block a user