-
Notifications
You must be signed in to change notification settings - Fork 5
/
HVM3.cabal
66 lines (63 loc) · 2.1 KB
/
HVM3.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
cabal-version: 3.0
name: HVM3
version: 0.1.0.0
homepage: https://higherorderco.com/
license: MIT
license-file: LICENSE
author: Victor Taelin
maintainer: victor.taelin@gmail.com
category: Language
build-type: Simple
extra-doc-files: CHANGELOG.md
common warnings
ghc-options: -Wall
executable hvml
import: warnings
main-is: HVML/Main.hs
other-modules: HVML.Type
, HVML.Collapse
, HVML.Compile
, HVML.Extract
, HVML.Inject
, HVML.Parse
, HVML.Reduce
, HVML.Show
build-depends: base ^>=4.20.0.0,
mtl ^>=2.3.1,
containers ^>=0.7,
unordered-containers ^>=0.2.19.1,
parsec ^>=3.1.17.0,
hashable ^>=1.5.0.0,
hs-highlight == 1.0.3,
ansi-terminal == 1.1.1,
transformers == 0.6.1.1,
list-t == 1.0.5.7,
time ^>=1.12.2,
process,
libffi,
unix,
file-embed,
hs-source-dirs: src
default-language: GHC2024
c-sources: src/HVML/Runtime.c
extra-libraries: c
ghc-options: -Wno-all -threaded
executable hvms
import: warnings
main-is: HVMS/Main.hs
other-modules: HVMS.Type
, HVMS.Extract
, HVMS.Inject
, HVMS.Parse
, HVMS.Show
build-depends: base ^>=4.20.0.0,
mtl ^>=2.3.1,
containers ^>=0.7,
unordered-containers ^>=0.2.19.1,
parsec ^>=3.1.17.0,
hashable ^>=1.5.0.0,
hs-source-dirs: src
default-language: GHC2024
c-sources: src/HVMS/Runtime.c
extra-libraries: c
ghc-options: -Wno-all