aboutsummaryrefslogtreecommitdiff
path: root/micro2.cabal
diff options
context:
space:
mode:
authorJuan J. Martinez <jjm@usebox.net>2022-09-09 17:04:00 +0100
committerJuan J. Martinez <jjm@usebox.net>2022-09-09 17:04:00 +0100
commitb2cc17cf26e4ee5e327fcbc92fd597ecb15cb75b (patch)
tree0854216e80c920fc8f26b11d15574465fc792cc7 /micro2.cabal
parentd24d92034ea278750668daff810147e0aec9dc04 (diff)
downloadmicro-lang-hs-b2cc17cf26e4ee5e327fcbc92fd597ecb15cb75b.tar.gz
micro-lang-hs-b2cc17cf26e4ee5e327fcbc92fd597ecb15cb75b.zip
Officially calling it just micro
Diffstat (limited to 'micro2.cabal')
-rw-r--r--micro2.cabal61
1 files changed, 0 insertions, 61 deletions
diff --git a/micro2.cabal b/micro2.cabal
deleted file mode 100644
index 01c83f3..0000000
--- a/micro2.cabal
+++ /dev/null
@@ -1,61 +0,0 @@
-cabal-version: 2.4
-name: micro2
-version: 0.1.0.0
-
-synopsis: Micro2 toy programming language
-homepage: https://git.usebox.net/micro2-lang/about/
-
-license: GPL-3.0-or-later
-author: Juan J. Martinez
-maintainer: jjm@usebox.net
-
-copyright: (c) 2022 Juan J. Martinez
-extra-source-files:
- CHANGELOG.md
- , README.md
- , COPYING
-
-library
- exposed-modules:
- Micro
- Micro.Ast
- Micro.Lexer
- Micro.Parser
- Micro.Error
- Micro.Env
- Micro.Compiler
- Micro.Asm.Sdcc
- build-depends:
- base ^>= 4.16.1.0
- , parsec ^>= 3.1.15.1
- , mtl ^>= 2.2.2
- , containers ^>= 0.6.5.1
- hs-source-dirs: src
- ghc-options: -Wall -Wno-name-shadowing
- default-language: Haskell2010
-
-test-suite tests
- type: exitcode-stdio-1.0
- main-is: Main.hs
- other-modules:
- Language
- build-depends:
- base ^>= 4.16.1.0
- , parsec ^>= 3.1.15.1
- , mtl ^>= 2.2.2
- , containers ^>= 0.6.5.1
- , HUnit
- , micro2
- hs-source-dirs: test
- default-language: Haskell2010
-
-executable micro2
- main-is: Main.hs
- build-depends:
- base ^>= 4.16.1.0
- , containers ^>= 0.6.5.1
- , mtl ^>= 2.2.2
- , micro2
- hs-source-dirs: app
- default-language: Haskell2010
-