gdritter repos earthling / master earthling.cabal
master

Tree @master (Download .tar.gz)

earthling.cabal @masterraw · history · blame

name:             earthling
version:          0.1.0.0
-- synopsis:
-- description:
license:          BSD3
license-file:     LICENSE
author:           Getty Ritter <gdritter@galois.com>
maintainer:       Getty Ritter <gdritter@galois.com>
copyright:        ©2017 Getty Ritter
-- category:
build-type:       Simple
cabal-version:    >= 1.14

library
  exposed-modules:     Earthling
                     , Earthling.Types
                     , Earthling.Lexer
                     , Earthling.Parser
                     , Earthling.Eval
  hs-source-dirs:      src
  build-depends:       base >=4.7 && <5
                     , text
                     , alex-tools
                     , containers
                     , array
                     , pretty-show
  build-tools:         alex, happy
  default-language:    Haskell2010
  default-extensions:  ScopedTypeVariables

executable earthling
  hs-source-dirs:      earthling
  main-is:             Main.hs
  default-extensions:  ScopedTypeVariables
  ghc-options:         -Wall
  build-depends:       base >=4.7 && <5
                     , earthling
  default-language:    Haskell2010