author: Julien Moutinho bug-reports: http://doc.autogeree.net/hcompta/bugs build-type: Simple cabal-version: >= 1.8 category: Finance -- data-dir: data -- data-files: description: Hcompta command line interface. extra-source-files: Test.hs extra-tmp-files: homepage: http://doc.autogeree.net/hcompta license: GPL license-file: COPYING maintainer: Julien Moutinho name: hcompta-cli stability: experimental synopsis: hcompta tested-with: GHC==7.8.4 version: 0.0.0 source-repository head type: git location: git://git.autogeree.net/hcompta Flag dev Description: Turn on development settings. Default: False Flag library-only Description: Build only library Default: False Library if flag(dev) cpp-options: -DDEVELOPMENT ghc-options: -Wall -fno-warn-tabs --disable-optimization -- -ddump-splices -- -fno-warn-unused-do-bind -fno-warn-name-shadowing -fno-warn-missing-signatures -- -fno-warn-type-defaults -fno-warn-orphans else ghc-options: -Wall -fno-warn-tabs -- -O2 -- default-language: Haskell2010 exposed-modules: Hcompta.CLI Hcompta.CLI.Args Hcompta.CLI.Command Hcompta.CLI.Command.Balance Hcompta.CLI.Command.Print Hcompta.CLI.Context Hcompta.CLI.Write build-depends: base >= 4.3 && < 5 , ansi-terminal >= 0.4.0 , containers , hcompta-lib , HUnit , pretty-show , safe >= 0.2 , transformers Executable hcompta-cli if flag(library-only) Buildable: False main-is: Hcompta/CLI/Main.hs hs-source-dirs: . build-depends: base >= 4.3 && < 5 , ansi-terminal >= 0.4.0 , containers , hcompta-lib , HUnit , pretty-show , safe >= 0.2 , transformers ghc-options: -threaded -rtsopts -with-rtsopts=-N -- -O2 test-suite Test type: exitcode-stdio-1.0 main-is: Main.hs hs-source-dirs: Test ghc-options: -Wall -fno-warn-unused-do-bind -fno-warn-name-shadowing -fno-warn-missing-signatures ghc-options: -fno-warn-type-defaults -fno-warn-orphans -- default-language: Haskell2010 build-depends: hcompta-cli , base >= 4.3 && < 5 , HUnit , safe , test-framework , test-framework-hunit