elna/elna.cabal

34 lines
788 B
Plaintext
Raw Normal View History

2024-07-21 16:15:17 +02:00
cabal-version: 3.0
name: elna
version: 0.1.0.0
synopsis:
Elna programming language compiles simple mathematical operations to RISC-V code
-- description:
license: MPL-2.0
license-file: LICENSE
author: Eugen Wissner
maintainer: belka@caraus.de
-- copyright:
category: Language
build-type: Simple
extra-doc-files: TODO README
common warnings
ghc-options: -Wall
executable elna
import: warnings
main-is: Main.hs
other-modules:
Language.Elna.AST
Language.Elna.Parser
default-extensions:
OverloadedStrings
build-depends:
base ^>=4.17.2.1,
megaparsec ^>= 9.6,
text ^>= 2.0
hs-source-dirs: src
default-language: GHC2021