gecco/gecco.cabal

35 lines
1023 B
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
, TestProg
, CompChez
2024-06-04 18:45:06 +02:00
build-depends: base
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