[Cython] Move extra Cython-related headers to main include directory

This commit is contained in:
Ray Speth 2013-09-28 18:18:12 +00:00
parent 332569114e
commit a6ce399374
4 changed files with 3 additions and 3 deletions

View file

@ -29,7 +29,7 @@ cdef extern from "cantera/thermo/mix_defs.h":
cdef int kinetics_type_edge "Cantera::cEdgeKinetics"
cdef extern from "funcWrapper.h":
cdef extern from "cantera/cython/funcWrapper.h":
ctypedef double (*callback_wrapper)(double, void*, void**)
cdef int translate_exception()
@ -498,7 +498,7 @@ cdef extern from "cantera/kinetics/ReactionPath.h":
void build(CxxKinetics&, string&, CxxStringStream&, CxxReactionPathDiagram&, cbool)
cdef extern from "wrappers.h":
cdef extern from "cantera/cython/wrappers.h":
# config definitions
cdef string get_cantera_version()
cdef int get_sundials_version()

View file

@ -62,4 +62,4 @@ setup(name="Cantera",
package_data = {'cantera.data': ['*.*'],
'cantera.test.data': ['*.*'],
'cantera.examples': ['*/*.*'],
'cantera': ['*.pxd', '*.h']})
'cantera': ['*.pxd']})