-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhmcalc.cabal
44 lines (39 loc) · 1.29 KB
/
hmcalc.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
43
44
Name: hmcalc
Version: 0.1.0.0
Synopsis: hmcalc is a simple calculator for matrices
License: GPL-3
License-file: LICENSE
Author: Kilian Kilger
Maintainer: [email protected]
Category: Math
Build-type: Simple
Cabal-version: >=1.10
Data-Files: LICENSE
Source-repository head
Type: git
Location: https://github.com/kkilger/hmcalc.git
Library
Hs-Source-Dirs: src
Ghc-options: -Wall -fwarn-tabs
Build-depends: base >= 4.6 && < 5,
mtl >=2.1 && <3
Exposed-modules: Hmcalc.Lexer
Default-Extensions: Safe
Default-Language: Haskell2010
Executable hmcalc
Main-is: Main.hs
Ghc-options: -Wall -fwarn-tabs
Build-depends: base >=4.6 && <5,
hmcalc
Default-language: Haskell2010
Default-Extensions: Safe
Test-Suite lexerTest
Type: exitcode-stdio-1.0
Hs-Source-Dirs: test
Main-is: LexerTest.hs
Build-depends: base,
test-framework,
test-framework-hunit,
HUnit,
hmcalc
Default-language: Haskell2010