Merge remote-tracking branch 'upstream/main' into feature/mixedPolytrope

# Conflicts:
#	.gitignore
#	build-config/meson.build
#	meson.build
#	meson_options.txt
#	src/composition/public/composition.h
#	src/config/public/config.h
#	src/constants/public/const.h
#	src/meson.build
#	tests/composition_sandbox/comp.cpp
This commit is contained in:
2025-06-11 15:05:11 -04:00
3 changed files with 17 additions and 6 deletions

View File

@@ -1,5 +1,4 @@
#ifndef SPECIES_MASS_DATA_H #pragma once
#define SPECIES_MASS_DATA_H
#include <unordered_map> #include <unordered_map>
#include <string_view> #include <string_view>
#include <string> #include <string>
@@ -7205,4 +7204,3 @@ namespace chemSpecies {
{"Og-295", Og_295}, {"Og-295", Og_295},
}; };
}; // namespace chemSpecies }; // namespace chemSpecies
#endif // SPECIES_MASS_DATA_H

View File

@@ -7,3 +7,17 @@ subdir('boost')
subdir('opatIO') subdir('opatIO')
subdir('mpi') subdir('mpi')
subdir('hypre') subdir('hypre')
subdir('pybind')
# Set the config file error handling options
configErr = get_option('config_error_handling')
# build up any -D flags we need
commonCppArgs = []
if configErr == 'warn'
commonCppArgs += ['-DCONFIG_WARN']
elif configErr == 'harsh'
commonCppArgs += ['-DCONFIG_HARSH']
endif
add_project_arguments(commonCppArgs, language: 'cpp')

View File

@@ -9,13 +9,12 @@ composition_headers = files(
dependencies = [ dependencies = [
probe_dep, probe_dep,
config_dep,
quill_dep, quill_dep,
species_weight_dep species_weight_dep
] ]
# Define the libcomposition library so it can be linked against by other parts of the build system # Define the libcomposition library so it can be linked against by other parts of the build system
libcomposition = static_library('composition', libcomposition = library('composition',
composition_sources, composition_sources,
include_directories: include_directories('public'), include_directories: include_directories('public'),
cpp_args: ['-fvisibility=default'], cpp_args: ['-fvisibility=default'],