feat(GridFire): brought gridfire up to where network module in SERiF was before splitting it off
This commit is contained in:
7
build-config/fourdst/libcomposition/meson.build
Normal file
7
build-config/fourdst/libcomposition/meson.build
Normal file
@@ -0,0 +1,7 @@
|
||||
composition_p = subproject('libcomposition')
|
||||
comp_dep = composition_p.get_variable('composition_dep')
|
||||
spw_dep = composition_p.get_variable('species_weight_dep')
|
||||
composition_dep = [
|
||||
comp_dep,
|
||||
spw_dep,
|
||||
]
|
||||
2
build-config/fourdst/libconfig/meson.build
Normal file
2
build-config/fourdst/libconfig/meson.build
Normal file
@@ -0,0 +1,2 @@
|
||||
config_p = subproject('libconfig')
|
||||
config_dep = config_p.get_variable('config_dep')
|
||||
2
build-config/fourdst/libconstants/meson.build
Normal file
2
build-config/fourdst/libconstants/meson.build
Normal file
@@ -0,0 +1,2 @@
|
||||
const_p = subproject('libconstants')
|
||||
const_dep = const_p.get_variable('const_dep')
|
||||
6
build-config/fourdst/liblogging/meson.build
Normal file
6
build-config/fourdst/liblogging/meson.build
Normal file
@@ -0,0 +1,6 @@
|
||||
logging_p = subproject('liblogging')
|
||||
|
||||
logging_dep = logging_p.get_variable('logging_dep')
|
||||
quill_dep = logging_p.get_variable('quill_dep')
|
||||
|
||||
log_dep = [logging_dep, quill_dep]
|
||||
4
build-config/fourdst/meson.build
Normal file
4
build-config/fourdst/meson.build
Normal file
@@ -0,0 +1,4 @@
|
||||
subdir('libconstants')
|
||||
subdir('liblogging')
|
||||
subdir('libconfig')
|
||||
subdir('libcomposition')
|
||||
7
build-config/meson.build
Normal file
7
build-config/meson.build
Normal file
@@ -0,0 +1,7 @@
|
||||
cmake = import('cmake')
|
||||
|
||||
subdir('fourdst')
|
||||
subdir('boost')
|
||||
subdir('cppad')
|
||||
|
||||
|
||||
@@ -1,5 +0,0 @@
|
||||
if get_option('build_python')
|
||||
pybind11_proj = subproject('pybind11')
|
||||
pybind11_dep = pybind11_proj.get_variable('pybind11_dep')
|
||||
python3_dep = dependency('python3')
|
||||
endif
|
||||
@@ -1,10 +0,0 @@
|
||||
quill_cmake_options = cmake.subproject_options()
|
||||
quill_cmake_options.add_cmake_defines({
|
||||
'BUILD_SHARED_LIBS': 'ON',
|
||||
'CMAKE_SKIP_INSTALL_RULES': 'ON'
|
||||
})
|
||||
quill_sp = cmake.subproject(
|
||||
'quill',
|
||||
options: quill_cmake_options,
|
||||
)
|
||||
quill_dep = quill_sp.dependency('quill')
|
||||
Reference in New Issue
Block a user