Supply flags to bdist
This commit is contained in:
parent
8d0758fc4c
commit
a2578c21e4
1 changed files with 5 additions and 4 deletions
|
@ -62,9 +62,10 @@ def install(self, spec, prefix):
|
||||||
spec['meep'].prefix.lib
|
spec['meep'].prefix.lib
|
||||||
]
|
]
|
||||||
|
|
||||||
|
include_flags = '-I{0}'.format(','.join(include_dirs))
|
||||||
|
library_flags = '-L{0}'.format(','.join(library_dirs))
|
||||||
|
|
||||||
python(setup, 'clean', '--all')
|
python(setup, 'clean', '--all')
|
||||||
python(setup, 'build_ext',
|
python(setup, 'build_ext', include_flags, library_flags)
|
||||||
'-I{0}'.format(','.join(include_dirs)),
|
|
||||||
'-L{0}'.format(','.join(library_dirs)))
|
|
||||||
python(setup, 'install', '--prefix={0}'.format(prefix))
|
python(setup, 'install', '--prefix={0}'.format(prefix))
|
||||||
python(setup, 'bdist')
|
python(setup, 'bdist', include_flags, library_flags)
|
||||||
|
|
Loading…
Reference in a new issue