-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathherl.cabal
42 lines (38 loc) · 1.3 KB
/
herl.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
34
35
36
37
38
39
40
41
42
-- Initial herl.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
name: herl
version: 0.1.0.0
synopsis: Erlang VM in Haskell
-- description:
license: Apache-2.0
license-file: LICENSE
author: Lennart Kolmodin
maintainer: [email protected]
copyright: Lennart Kolmodin 2013-2014
category: System
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
library
exposed-modules:
AtomTable,
AtomTableErlang,
Beam,
EModule,
ETerm,
ExtTerm,
Process
other-extensions: BangPatterns, DeriveDataTypeable, OverloadedStrings, RecordWildCards, RankNTypes
build-depends: base ==4.6.*, bytestring ==0.10.*, binary ==0.7.*, zlib ==0.5.*, pretty-show ==1.6.*, uniplate ==1.6.*, mtl, vector==0.10.*
default-language: Haskell2010
executable mkAtomTable
main-is: mkAtomTable.hs
other-extensions: OverloadedStrings
build-depends: base ==4.6.*, bytestring ==0.10.*, haskell-src-exts
default-language: Haskell2010
test-suite test-simple
type: exitcode-stdio-1.0
main-is: simple.hs
hs-source-dirs: tests
build-depends: base, bytestring, herl
default-language: Haskell2010