-
Notifications
You must be signed in to change notification settings - Fork 0
/
b.cabal
33 lines (31 loc) · 1.17 KB
/
b.cabal
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
-- Initial b.cabal generated by cabal init. For further documentation, see
-- http://haskell.org/cabal/users-guide/
name: b
version: 0.1.0.0
synopsis: A compiler for the B programming language
-- description:
homepage: https://github.com/forestbelton/b.git
license: MIT
license-file: LICENSE
author: Forest Belton
maintainer: forest@homolo.gy
-- copyright:
category: Language
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
executable b
main-is: Main.hs
other-modules: Language.B.AST
, Language.B.Parser
, Language.B.CodeGen
-- other-extensions:
build-depends: base >= 4.9.1.0 && < 5
, trifecta >= 1.6.2.1 && < 1.7
, parsers >= 0.12.4 && < 0.13
, llvm-hs-pure >= 4.0.0.0 && < 4.1.0.0
, llvm-hs >= 4.0.1.0 && < 5
, containers >= 0.5.7.1 && < 0.6
, mtl >= 2.2.1 && < 2.3
hs-source-dirs: src
default-language: Haskell2010