name: polar-configfile version: 0.2.0.1 synopsis: Fork of ConfigFile for Polar Game Engine description: A fork of ConfigFile updated and reworked to export a more consistent API for the Polar Game Engine. license: BSD3 license-file: LICENSE author: John Goerzen (2004-2014), David Farrell maintainer: David Farrell copyright: Copyright (C) 2004-2014 John Goerzen, 2015 David Farrell category: Game Engine, Parsing build-type: Simple cabal-version: >=1.10 source-repository head type: git location: https://github.com/polar-engine/polar-configfile.git flag buildtests description: Build the executable to run unit tests default: False library exposed-modules: Data.ConfigFile, Data.ConfigFile.Types, Data.ConfigFile.Parser other-modules: Data.ConfigFile.Lexer build-depends: base >4.8 && <5.0, containers, mtl, parsec, MissingH >=1.0 default-language: Haskell2010 hs-source-dirs: src ghc-options: -Wall -fno-warn-unused-do-bind executable runtests if flag(buildtests) buildable: True build-depends: HUnit, testpack else buildable: False main-is: runtests.hs other-modules: Tests, ConfigParser.Maintest, ConfigParser.Parsertest default-language: Haskell2010 hs-source-dirs: testsrc, src, .