bubble-dynamics

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

meson.build (366B)


      1 project('bubble_dynamics', 'cpp',
      2   version:
      3   '1.0',
      4   default_options: ['cpp_std=c++11', 'b_ndebug=if-release']
      5 )
      6 
      7 rpbd_deps = []
      8 rpbd_deps += dependency('ode_toolbox', fallback: ['ode_toolbox', 'ode_toolbox_dep'])
      9 rpbd_deps += dependency('eigen3', fallback: ['eigen', 'eigen_dep'])
     10 rpbd_deps += dependency('openmp', required: false)
     11 
     12 subdir('src')
     13 subdir('test')