bubble-dynamics

Spherical bubble dynamics simulator
git clone https://git.0xfab.ch/bubble-dynamics.git
Log | Files | Refs | README | LICENSE

commit 422837ab2f55b7b23bc24297964b5201e17a1815
parent a3b718f28f69cefd6ab3740f58c847a7fcdb26c2
Author: Fabian Wermelinger <fabianw@mavt.ethz.ch>
Date:   Mon,  1 Feb 2021 00:42:47 +0100

Add missing openmp dependency

Diffstat:
Mmeson.build | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/meson.build b/meson.build @@ -7,6 +7,7 @@ project('bubble_dynamics', 'cpp', rpbd_deps = [] rpbd_deps += dependency('ode_toolbox', fallback: ['ode_toolbox', 'ode_toolbox_dep']) rpbd_deps += dependency('eigen3', fallback: ['eigen', 'eigen_dep']) +rpbd_deps += dependency('openmp', required: false) subdir('src') subdir('test')