Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Scientific Software
MDANSE
Commits
f5e41796
Commit
f5e41796
authored
Jul 03, 2018
by
eric pellegrini
Committed by
Remi Perenon
Jul 03, 2018
Browse files
Added numpy include dir to xtc extensions
parent
762f63c2
Changes
1
Hide whitespace changes
Inline
Side-by-side
setup.py
View file @
f5e41796
...
...
@@ -283,7 +283,7 @@ EXTENSIONS = [Extension('MDANSE.Extensions.distance_histogram',
sources
=
glob
.
glob
(
os
.
path
.
join
(
QHULL_DIR
,
'src'
,
'*.c'
))
+
[
os
.
path
.
join
(
"Extensions"
,
'qhull.pyx'
)],
define_macros
=
[(
'qh_QHpointer'
,
'1'
)]),
Extension
(
'MDANSE.Extensions.xtc'
,
include_dirs
=
[
os
.
path
.
join
(
'Extensions'
,
'xtc'
,
'include'
)],
include_dirs
=
[
numpy
.
get_include
(),
os
.
path
.
join
(
'Extensions'
,
'xtc'
,
'include'
)],
sources
=
glob
.
glob
(
os
.
path
.
join
(
'Extensions'
,
'xtc'
,
'src'
,
'*.c'
))
+
[
os
.
path
.
join
(
'Extensions'
,
'xtc'
,
'xtc.pyx'
)])
]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment