blob: 7c27cbb7f02e2be344343da308be0970c944e506 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
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
|