Skip to content

Commit

Permalink
Merge pull request #111 from pyrocko/bugfix/install
Browse files Browse the repository at this point in the history
setup.py: fix compiled module path names
  • Loading branch information
miili authored Oct 28, 2023
2 parents fe639bb + d3b9f8d commit 3f06670
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,15 +178,15 @@ def _have_openmp():
setup(
ext_modules=[
Extension(
"kite.covariance_ext",
"covariance_ext",
sources=[pjoin("kite/ext", "covariance.c")],
include_dirs=[numpy.get_include(), get_python_inc()],
extra_compile_args=omp_arg,
extra_link_args=omp_lib,
language="c",
),
Extension(
"kite.sources.disloc_ext",
"sources.disloc_ext",
sources=[pjoin("kite/sources/ext", "disloc.c")],
include_dirs=[numpy.get_include(), get_python_inc()],
extra_compile_args=omp_arg,
Expand Down

0 comments on commit 3f06670

Please sign in to comment.