-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcaiolisp.cabal
More file actions
56 lines (50 loc) · 1.31 KB
/
caiolisp.cabal
File metadata and controls
56 lines (50 loc) · 1.31 KB
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
48
49
50
51
52
53
54
55
56
cabal-version: 3.4
name: caiolisp
version: 0.0.1
description: Please see the README on GitHub at <https://github.com/caiorulli/caiolisp#readme>
homepage: https://github.com/caiorulli/caiolisp#readme
bug-reports: https://github.com/caiorulli/caiolisp/issues
author: Caio Rulli Thomaz
maintainer: caio@crthomaz.com.br
copyright: 2021 Caio Rulli Thomaz
license: GPL-3.0-or-later
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
source-repository head
type: git
location: https://github.com/caiorulli/caiolisp
common shared-properties
default-language: Haskell2010
build-depends:
base >=4.7 && <5
, containers
, mtl
, megaparsec
library
import: shared-properties
exposed-modules:
Caiolisp.BackEnd
Caiolisp.FrontEnd
Caiolisp.Primitives
Caiolisp.TypeSystem
hs-source-dirs:
src
executable caiolisp-exe
import: shared-properties
main-is: Main.hs
hs-source-dirs: app
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
build-depends:
caiolisp
, haskeline
test-suite caiolisp-test
import: shared-properties
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs: test
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
build-depends:
caiolisp
, hspec