diff options
| author | Dylan Baker <dylan@pnwbakers.com> | 2024-09-30 09:23:27 -0700 |
|---|---|---|
| committer | Jussi Pakkanen <jpakkane@gmail.com> | 2024-09-30 20:56:50 +0300 |
| commit | d584c7debb128253c72df892595d9ffe79262f04 (patch) | |
| tree | c4468c2139c9b0306a3305f3f736f8d72ff2c47a | |
| parent | a31f8d68cb068ad84fab08c901b7f8c707dc420f (diff) | |
| download | meson-d584c7debb128253c72df892595d9ffe79262f04.tar.gz | |
tests: set c++ stdandard to c++11 for hd5f
This fails on MacOS otherwise
| -rw-r--r-- | test cases/frameworks/25 hdf5/meson.build | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test cases/frameworks/25 hdf5/meson.build b/test cases/frameworks/25 hdf5/meson.build index b9f5784b4..38e001202 100644 --- a/test cases/frameworks/25 hdf5/meson.build +++ b/test cases/frameworks/25 hdf5/meson.build @@ -1,4 +1,8 @@ -project('hdf5_framework', 'c') +project( + 'hdf5_framework', + 'c', + default_options : ['cpp_std=c++11'], +) # NOTE: all HDF5 languages must have HDF5 C library working. |
