Fized stoichiometry matrix initialization, added penames to reablib reactions, began work on LogicalReaction to sum the contributions of different fitting functions provided by reaclib
40 lines
921 B
Meson
40 lines
921 B
Meson
# Define the library
|
|
network_sources = files(
|
|
'lib/network.cpp',
|
|
'lib/approx8.cpp',
|
|
'lib/netgraph.cpp'
|
|
)
|
|
|
|
|
|
dependencies = [
|
|
boost_dep,
|
|
const_dep,
|
|
config_dep,
|
|
composition_dep,
|
|
reaclib_reactions_dep,
|
|
cppad_dep,
|
|
log_dep
|
|
]
|
|
|
|
# Define the libnetwork library so it can be linked against by other parts of the build system
|
|
libnetwork = library('network',
|
|
network_sources,
|
|
include_directories: include_directories('include'),
|
|
dependencies: dependencies,
|
|
install : true)
|
|
|
|
network_dep = declare_dependency(
|
|
include_directories: include_directories('include'),
|
|
link_with: libnetwork,
|
|
sources: network_sources,
|
|
dependencies: dependencies,
|
|
)
|
|
|
|
# Make headers accessible
|
|
network_headers = files(
|
|
'include/gridfire/network.h',
|
|
'include/gridfire/approx8.h',
|
|
'include/gridfire/netgraph.h',
|
|
)
|
|
install_headers(network_headers, subdir : 'gridfire/gridfire')
|