Skip to content

Commit

Permalink
Merge pull request #284 from ketch/meson_build
Browse files Browse the repository at this point in the history
Add meson.build.
  • Loading branch information
ketch authored Oct 12, 2023
2 parents 2d90d97 + a8fefde commit 7c799dc
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/python/amrclaw/meson.build
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
package = 'clawpack.amrclaw'
pkg_dir = join_paths(package.split('.'))

python_sources = [
'__init__.py',
'compare_gauges.py',
'data.py',
'region_tools.py',
'test.py',
]

py.install_sources(
python_sources,
subdir: pkg_dir,
)

0 comments on commit 7c799dc

Please sign in to comment.