74 lines
1.5 KiB
Plaintext
74 lines
1.5 KiB
Plaintext
cabal-version: 3.0
|
|
name: gyehoek
|
|
version: 0.1.0.0
|
|
license: BSD-3-Clause
|
|
license-file: LICENSE
|
|
author: Madeleine Sydney Ślaga
|
|
maintainer: msyds@deertopia.net
|
|
|
|
-- copyright:
|
|
category: Language
|
|
build-type: Simple
|
|
|
|
-- extra-doc-files: CHANGELOG.md
|
|
-- extra-source-files:
|
|
|
|
common ghcstuffs-dev
|
|
ghc-options:
|
|
-Wno-unused-matches -Wno-missing-signatures -Wno-typed-holes
|
|
|
|
common ghcstuffs
|
|
ghc-options:
|
|
-Wall -fdefer-type-errors -fno-show-valid-hole-fits
|
|
-fdefer-out-of-scope-variables -fplugin=Effectful.Plugin
|
|
-threaded
|
|
|
|
default-extensions:
|
|
BlockArguments
|
|
DeriveGeneric
|
|
OverloadedStrings
|
|
PartialTypeSignatures
|
|
PatternSynonyms
|
|
|
|
executable gyehoek
|
|
import: ghcstuffs, ghcstuffs-dev
|
|
main-is: Main.hs
|
|
|
|
-- cabal-fmt: expand app -Main
|
|
other-modules:
|
|
Gyehoek.ANF.Syntax
|
|
Gyehoek.GenSym
|
|
Gyehoek.Options
|
|
Gyehoek.QBE
|
|
Gyehoek.QBE.Parse
|
|
Gyehoek.Scheme.Syntax
|
|
Gyehoek.Sexp
|
|
|
|
build-depends:
|
|
, base ^>=4.21.2.0
|
|
, containers
|
|
, effectful
|
|
, effectful-core
|
|
, effectful-plugin
|
|
, filepath
|
|
, generic-lens
|
|
, invertible-grammar
|
|
, lens
|
|
, megaparsec
|
|
, mtl
|
|
, optparse-applicative
|
|
, prettyprinter
|
|
, process
|
|
, qbe
|
|
, recursion-schemes
|
|
, sexp-grammar
|
|
, template-haskell
|
|
, text
|
|
, unordered-containers
|
|
, vector
|
|
, text-short
|
|
, cradle
|
|
|
|
hs-source-dirs: app
|
|
default-language: GHC2024
|