Adjust to relative dir

fixes-turtlebasket
Mattia Montanari 2020-05-21 17:20:33 +01:00
parent 3e5902542d
commit 708bbc5117
2 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
#!python
# cython: language_level=3
# distutils: sources = src/openGJK.c
# distutils: include_dirs = include/openGJK
# distutils: sources = ../../src/openGJK.c
# distutils: include_dirs = ../../include/openGJK
cimport openGJK_cython

View File

@ -4,7 +4,7 @@ from Cython.Build import cythonize
exts = Extension(
"openGJK_cython",
sources = ["openGJK_cython.pyx"],
extra_compile_args=['-Iinclude/','-fopenmp'],
extra_compile_args=['-I../../include/','-fopenmp'],
extra_link_args=['-fopenmp'],
)