Cabal has the includes property: https://www.haskell.org/cabal/users-guide/developing-packages.html#pkg-field-includes
Which allows you to specify the C headers that should be included when we are compiling C code. How come this is ignored by Hpack? How does Hpack specify that C headers are needed when compiling some C code with c-sources?
Cabal has the
includesproperty: https://www.haskell.org/cabal/users-guide/developing-packages.html#pkg-field-includesWhich allows you to specify the C headers that should be included when we are compiling C code. How come this is ignored by Hpack? How does Hpack specify that C headers are needed when compiling some C code with
c-sources?