Skip to content

Commit

Permalink
allow passing custom get_data function to make-wci and build echogram…
Browse files Browse the repository at this point in the history
… classes
  • Loading branch information
peter-urban committed Nov 15, 2024
1 parent b569afb commit 9906bd9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ project(
'cpp',
license: 'MPL-2.0',

version: '0.8.6',
version: '0.8.7',
default_options: ['warning_level=2', 'buildtype=release', 'cpp_std=c++20'],
meson_version: '>=1.3.2' #first version with clang-cl openmp support
)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
def select_get_wci_image(ping, selection, wci_value):
if callable(wci_value):
return wci_value(ping, selection)

wci_values = wci_value.split("/")

Expand Down

0 comments on commit 9906bd9

Please sign in to comment.