itanium-abi-0.1.0.0: itanium-abi.cabal
-- Initial itanium-abi.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: itanium-abi
version: 0.1.0.0
synopsis: An implementation of name mangling/demangling for the Itanium ABI
license: BSD3
license-file: LICENSE
author: Tristan Ravitch
maintainer: travitch@cs.wisc.edu
category: Development
build-type: Simple
cabal-version: >=1.10
description: Currently supports everything in the standard but templates
and C++11. Support for these will be added. Includes a name
mangler, demangler, and pretty printer.
-- copyright:
library
default-language: Haskell2010
hs-source-dirs: src
ghc-options: -Wall
build-depends: base > 3 && < 5, boomerang, text, transformers, unordered-containers
exposed-modules: ABI.Itanium
other-modules: ABI.Itanium.Types,
ABI.Itanium.Pretty
test-suite DemangleTests
default-language: Haskell2010
hs-source-dirs: tests
type: exitcode-stdio-1.0
main-is: DemangleTests.hs
build-depends: itanium-abi, base > 3 && < 5, process,
test-framework, test-framework-hunit, HUnit
ghc-options: -Wall