Skip to content

Commit

Permalink
tests/setup.py.in: fix Cython C includes path for VPATH build
Browse files Browse the repository at this point in the history
  • Loading branch information
rrthomas committed Jan 30, 2023
1 parent 4a24cba commit 5fc9ff4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/setup.py.in
Expand Up @@ -31,7 +31,8 @@ try:
setup(ext_modules=[
Extension('Recode', ['Recode.c'],
include_dirs=[top_builddir, os.path.join(top_srcdir, 'src'),
os.path.join(top_srcdir, 'lib')],
os.path.join(top_srcdir, 'lib'),
os.path.join(top_builddir, 'lib')],
library_dirs=[os.path.join(top_builddir, 'src', '.libs'),
os.path.join(top_builddir, 'lib', '.libs')],
libraries=['recode', 'gnu'],
Expand Down

0 comments on commit 5fc9ff4

Please sign in to comment.