gecco/gecco.cabal

39 lines
1.1 KiB
Plaintext
Raw Normal View History

2024-06-04 18:45:06 +02:00
cabal-version: 3.0
name: gecco
version: 0.1.0
synopsis: simple programming language to play with codegen
license: ISC
author: rachel samuelsson
maintainer: depsterr@protonmail.com
category: Language
build-type: Simple
executable gecco
main-is: Main.hs
build-depends: base
, gecco
hs-source-dirs: app
default-language: GHC2021
2024-06-07 23:29:37 +02:00
default-extensions: LambdaCase
ghc-options: -O2 -fexpose-all-unfoldings -fspecialize-aggressively -threaded "-with-rtsopts=-A32M -N8"
2024-06-04 18:45:06 +02:00
library
exposed-modules: Core
2024-06-07 23:29:37 +02:00
, Val
, Syn
, Eval
, Type
2024-06-10 17:30:40 +02:00
, Parse
2024-06-07 23:29:37 +02:00
, TestProg
, CompChez
2024-06-04 18:45:06 +02:00
build-depends: base
2024-06-10 17:30:40 +02:00
, megaparsec
, parser-combinators
, text
2024-06-04 18:45:06 +02:00
hs-source-dirs: src
default-language: GHC2021
2024-06-07 23:29:37 +02:00
default-extensions: LambdaCase
ghc-options: -O2 -fexpose-all-unfoldings -fspecialize-aggressively -threaded