Skip to content

Commit 32c3e2a

Browse files
committed
globbing
1 parent 9db92b9 commit 32c3e2a

File tree

3 files changed

+28
-28
lines changed

3 files changed

+28
-28
lines changed

python/meson.build

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44

55
# -- python sources --
66
sources = [
7+
'themachinethatgoesping/tools/__init__.py',
8+
'themachinethatgoesping/tools/timeconv.py',
79
'themachinethatgoesping/scripts/__init__.py',
810
'themachinethatgoesping/scripts/mbes.py',
911
'themachinethatgoesping/scripts/oceanographic.py',
1012
'themachinethatgoesping/scripts/plot_tools.py',
1113
'themachinethatgoesping/scripts/read_xcf.py',
1214
'themachinethatgoesping/scripts/sbes.py',
13-
'themachinethatgoesping/tools/__init__.py',
14-
'themachinethatgoesping/tools/timeconv.py',
1515
]
1616

1717
init_configuration = configuration_data({

src/tests/meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ testcomponent = 'tools'
99
sources = [
1010
'timeconv.test.cpp',
1111
'tutorial.test.cpp',
12-
'helper/defaultsharedpointermap.test.cpp',
1312
'vectorinterpolators/akima.test.cpp',
1413
'vectorinterpolators/bivector.test.cpp',
1514
'vectorinterpolators/common.test.cpp',
@@ -19,6 +18,7 @@ sources = [
1918
'rotationfunctions/helper.test.cpp',
2019
'rotationfunctions/quaternions.test.cpp',
2120
'pyhelper/pyindexer.test.cpp',
21+
'helper/defaultsharedpointermap.test.cpp',
2222
]
2323

2424
foreach source : sources

src/themachinethatgoesping/tools/meson.build

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -19,20 +19,6 @@ headers = [
1919
'vectorinterpolators.hpp',
2020
'exceptions/version_error.hpp',
2121
'exceptions/.docstrings/version_error.doc.hpp',
22-
'helper/defaultmap.hpp',
23-
'helper/defaultsharedpointermap.hpp',
24-
'helper/enum.hpp',
25-
'helper/isviewstream.hpp',
26-
'helper/omp_helper.hpp',
27-
'helper/printing.hpp',
28-
'helper/xtensor.hpp',
29-
'helper/.docstrings/defaultmap.doc.hpp',
30-
'helper/.docstrings/defaultsharedpointermap.doc.hpp',
31-
'helper/.docstrings/enum.doc.hpp',
32-
'helper/.docstrings/isviewstream.doc.hpp',
33-
'helper/.docstrings/omp_helper.doc.hpp',
34-
'helper/.docstrings/printing.doc.hpp',
35-
'helper/.docstrings/xtensor.doc.hpp',
3622
'classhelper/classversion.hpp',
3723
'classhelper/objectprinter.hpp',
3824
'classhelper/stream.hpp',
@@ -55,6 +41,17 @@ headers = [
5541
'vectorinterpolators/.docstrings/linearinterpolator.doc.hpp',
5642
'vectorinterpolators/.docstrings/nearestinterpolator.doc.hpp',
5743
'vectorinterpolators/.docstrings/slerpinterpolator.doc.hpp',
44+
'.docstrings/hashhelper.doc.hpp',
45+
'.docstrings/helper.doc.hpp',
46+
'.docstrings/progressbars.doc.hpp',
47+
'.docstrings/timeconv.doc.hpp',
48+
'.docstrings/vectorinterpolators.doc.hpp',
49+
'rotationfunctions/helper.hpp',
50+
'rotationfunctions/quaternions.hpp',
51+
'rotationfunctions/.docstrings/helper.doc.hpp',
52+
'rotationfunctions/.docstrings/quaternions.doc.hpp',
53+
'pyhelper/pyindexer.hpp',
54+
'pyhelper/.docstrings/pyindexer.doc.hpp',
5855
'progressbars/consoleprogressbar.hpp',
5956
'progressbars/i_progressbar.hpp',
6057
'progressbars/i_progressbartimed.hpp',
@@ -69,17 +66,20 @@ headers = [
6966
'progressbars/.docstrings/progressbarchooser.doc.hpp',
7067
'progressbars/.docstrings/progressindicator.doc.hpp',
7168
'progressbars/.docstrings/progresstqdm.doc.hpp',
72-
'rotationfunctions/helper.hpp',
73-
'rotationfunctions/quaternions.hpp',
74-
'rotationfunctions/.docstrings/helper.doc.hpp',
75-
'rotationfunctions/.docstrings/quaternions.doc.hpp',
76-
'pyhelper/pyindexer.hpp',
77-
'pyhelper/.docstrings/pyindexer.doc.hpp',
78-
'.docstrings/hashhelper.doc.hpp',
79-
'.docstrings/helper.doc.hpp',
80-
'.docstrings/progressbars.doc.hpp',
81-
'.docstrings/timeconv.doc.hpp',
82-
'.docstrings/vectorinterpolators.doc.hpp',
69+
'helper/defaultmap.hpp',
70+
'helper/defaultsharedpointermap.hpp',
71+
'helper/enum.hpp',
72+
'helper/isviewstream.hpp',
73+
'helper/omp_helper.hpp',
74+
'helper/printing.hpp',
75+
'helper/xtensor.hpp',
76+
'helper/.docstrings/defaultmap.doc.hpp',
77+
'helper/.docstrings/defaultsharedpointermap.doc.hpp',
78+
'helper/.docstrings/enum.doc.hpp',
79+
'helper/.docstrings/isviewstream.doc.hpp',
80+
'helper/.docstrings/omp_helper.doc.hpp',
81+
'helper/.docstrings/printing.doc.hpp',
82+
'helper/.docstrings/xtensor.doc.hpp',
8383
]
8484

8585
# -- targets --

0 commit comments

Comments
 (0)