gdritter repos sml / master sml.cabal
master

Tree @master (Download .tar.gz)

sml.cabal @masterraw · history · blame

name: sml
version: 0.1.0.0
-- synopsis:
-- description:
license: BSD3
author: Getty Ritter <samothes@infinitenegativeutility.com>
maintainer: Getty Ritter <samothes@infinitenegativeutility.com>
copyright: @2018 Getty Ritter
-- category:
build-type: Simple
cabal-version: >=1.14

library
  hs-source-dirs: src
  ghc-options: -Wall
  build-depends: base >=4.7 && <5
               , text
               , alex-tools
               , array
  build-tools: happy
             , alex
  default-language: Haskell2010
  default-extensions: ScopedTypeVariables
  exposed-modules: SML
                   SML.AST
                   SML.Lexer

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