Files
gyehoek-hs/gyehoek.cabal
T
2026-05-07 09:07:57 -06:00

61 lines
1.2 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
ghc-options:
-Wall -fdefer-type-errors -fno-show-valid-hole-fits
-fdefer-out-of-scope-variables -Wno-typed-holes
-fplugin=Effectful.Plugin
other-extensions:
BlockArguments
PartialTypeSignatures
executable gyehoek
import: ghcstuffs
main-is: Main.hs
-- cabal-fmt: expand app -Main
other-modules:
Gyehoek.ANF
Gyehoek.Sexp
Gyehoek.GenSym
Gyehoek.QBE
Gyehoek.QBE.Parse
Gyehoek.Scratch
Gyehoek.Syntax
-- other-extensions:
build-depends:
, base ^>=4.21.2.0
, effectful
, effectful-core
, effectful-plugin
, lens
, megaparsec
, mtl
, prettyprinter
, qbe
, recursion-schemes
, template-haskell
, text
, vector
, generic-lens
, sexp-grammar
, invertible-grammar
hs-source-dirs: app
default-language: GHC2024