Skip to content

Commit a27a495

Browse files
authored
Merge pull request #91 from ketch/meson_build
Add meson.build.
2 parents 2d0f3d2 + 9f7f8ca commit a27a495

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

src/python/classic/meson.build

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
package = 'clawpack.classic'
2+
pkg_dir = join_paths(package.split('.'))
3+
4+
python_sources = [
5+
'__init__.py',
6+
'test.py',
7+
]
8+
9+
py.install_sources(
10+
python_sources,
11+
subdir: pkg_dir,
12+
)
13+

0 commit comments

Comments
 (0)