Adjust to relative dir
parent
3e5902542d
commit
708bbc5117
|
@ -1,7 +1,7 @@
|
||||||
#!python
|
#!python
|
||||||
# cython: language_level=3
|
# cython: language_level=3
|
||||||
# distutils: sources = src/openGJK.c
|
# distutils: sources = ../../src/openGJK.c
|
||||||
# distutils: include_dirs = include/openGJK
|
# distutils: include_dirs = ../../include/openGJK
|
||||||
|
|
||||||
cimport openGJK_cython
|
cimport openGJK_cython
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@ from Cython.Build import cythonize
|
||||||
exts = Extension(
|
exts = Extension(
|
||||||
"openGJK_cython",
|
"openGJK_cython",
|
||||||
sources = ["openGJK_cython.pyx"],
|
sources = ["openGJK_cython.pyx"],
|
||||||
extra_compile_args=['-Iinclude/','-fopenmp'],
|
extra_compile_args=['-I../../include/','-fopenmp'],
|
||||||
extra_link_args=['-fopenmp'],
|
extra_link_args=['-fopenmp'],
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue