We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 461a6fa commit 97db465Copy full SHA for 97db465
1 file changed
setup.py
@@ -65,7 +65,7 @@ def get_extensions(is_test):
65
compile_args = []
66
link_args = []
67
compile_args.append("-std=c++17")
68
- compile_args.append("-I{}".format(numpy.get_include()))
+ include_dirs = [numpy.get_include()]
69
70
bindings_sources = [os.path.join(PYTHON_BINDINGS_PATH, "cyprecice",
71
"cyprecice" + ".pyx")]
@@ -84,6 +84,7 @@ def get_extensions(is_test):
84
sources=bindings_sources,
85
libraries=[],
86
language="c++",
87
+ include_dirs=include_dirs,
88
extra_compile_args=compile_args,
89
extra_link_args=link_args
90
)
0 commit comments