name: inline-c-cpp version: 0.3.0.2 synopsis: Lets you embed C++ code into Haskell. description: Utilities to inline C++ code into Haskell using inline-c. See tests for example on how to build. license: MIT license-file: LICENSE author: Francesco Mazzoli maintainer: francesco@fpcomplete.com copyright: (c) 2015-2016 FP Complete Corporation, (c) 2017-2018 Francesco Mazzoli category: FFI tested-with: GHC == 8.2.2, GHC == 8.4.3, GHC == 8.6.1 build-type: Simple cabal-version: >=1.10 source-repository head type: git location: https://github.com/fpco/inline-c library exposed-modules: Language.C.Inline.Cpp Language.C.Inline.Cpp.Exceptions build-depends: base >=4.7 && <5 , inline-c >= 0.6.1.0 , template-haskell , safe-exceptions hs-source-dirs: src default-language: Haskell2010 ghc-options: -Wall -optc-std=c++11 if os(darwin) -- avoid https://gitlab.haskell.org/ghc/ghc/issues/11829 ld-options: -Wl,-keep_dwarf_unwind ghc-options: -pgmc=clang++ test-suite tests type: exitcode-stdio-1.0 hs-source-dirs: test main-is: tests.hs build-depends: base >=4 && <5 , inline-c , inline-c-cpp , safe-exceptions , hspec default-language: Haskell2010 ghc-options: -optc-std=c++11 if os(darwin) ghc-options: -pgmc=clang++ extra-libraries: stdc++ cc-options: -Wall -Werror -std=c++11