summaryrefslogtreecommitdiff
path: root/elna.cabal
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2024-07-21 16:15:17 +0200
committerEugen Wissner <belka@caraus.de>2024-07-21 16:15:17 +0200
commitbe4957ee599e7e14c934e61f3d91354760b38acd (patch)
treef8506ff75b5a4f1a502489e39f51a267d51ac69f /elna.cabal
downloadelna-be4957ee599e7e14c934e61f3d91354760b38acd.tar.gz
Initial commit
Diffstat (limited to 'elna.cabal')
-rw-r--r--elna.cabal33
1 files changed, 33 insertions, 0 deletions
diff --git a/elna.cabal b/elna.cabal
new file mode 100644
index 0000000..7c27cbb
--- /dev/null
+++ b/elna.cabal
@@ -0,0 +1,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