-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
executable file
·87 lines (80 loc) · 1.97 KB
/
package.yaml
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
name: Latte
version: 1.0.0.0
github: "githubuser/Latte"
license: MIT
author: "Mateusz Gienieczko"
maintainer: "matgienieczko@gmail.com"
copyright: "2020 Mateusz Gienieczko"
extra-source-files:
- README.md
- ChangeLog.md
# Metadata used when publishing your package
# synopsis: Short description of your package
# category: Web
# To avoid duplicated efforts in documentation and dealing with the
# complications of embedding Haddock markup inside cabal files, it is
# common to point users to the README.md file.
description: Please see the README on GitHub at <https://github.com/V0ldek/Latte#readme>
dependencies:
- base >= 4.7 && < 5
- array >= 0.5 && < 0.6
- mtl >= 2.2 && < 2.3
- containers >= 0.6 && < 0.7
- unordered-containers >= 0.2 && < 0.3
- directory >= 1.3 && < 1.4
- filepath >= 1.4 && < 1.5
- process >= 1.6 && < 1.7
- hspec >= 2.7 && < 2.8
- regex >= 1.1 && < 1.2
- hashable >= 1.3 && < 1.4
- random >= 1.1 && < 1.2
library:
source-dirs: src
ghc-options:
- -Wall
- -fno-warn-type-defaults
executables:
latc_x86_64:
main: Latc_x86_64.hs
source-dirs: app
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N2
- -main-is Latc_x86_64
- -Wall
dependencies:
- Latte
espi:
main: Espi.hs
source-dirs: app
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N2
- -main-is Espi
- -Wall
dependencies:
- Latte
tests:
Latte-test:
main: Spec.hs
source-dirs: test/Discovery
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
- -Wall
dependencies:
- Latte
Latte-exec-test:
main: X86_64Spec.hs
source-dirs: test/Exec
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
- -main-is X86_64Spec
- -Wall
dependencies:
- Latte