-
Notifications
You must be signed in to change notification settings - Fork 0
/
epseudocode.cabal
47 lines (44 loc) · 1.55 KB
/
epseudocode.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
45
46
47
-- Initial epseudocode.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: epseudocode
version: 0.4.0.0
synopsis: An interpreter for pseudocode
-- description:
license: BSD3
license-file: LICENSE
author: Barbu Paul - Gheorghe
maintainer: [email protected]
-- copyright:
category: Language
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
executable epseudocode
main-is: Main.hs
-- other-modules:
-- other-extensions:
build-depends: base >=4.7 && <4.8,
parsec,
haskeline,
transformers,
containers,
mtl,
directory
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -O2 -Wall -fno-warn-unused-do-bind -fno-warn-incomplete-patterns -fno-warn-missing-signatures
Test-Suite tests
type: exitcode-stdio-1.0
main-is: Tests.hs
hs-source-dirs: test, src
default-language: Haskell2010
build-depends: base, HUnit, Cabal >= 1.9.2,
parsec,
haskeline,
transformers,
containers,
mtl >= 2.2.1,
raw-strings-qq >= 1.0.2,
text >= 1.2.0,
directory
ghc-options: -fhpc