-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathHVM.cabal
41 lines (39 loc) · 1.19 KB
/
HVM.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
cabal-version: 3.0
name: HVM
version: 0.1.0.0
homepage: https://higherorderco.com/
license: MIT
license-file: LICENSE
author: Victor Taelin
maintainer: [email protected]
category: Language
build-type: Simple
common warnings
ghc-options: -Wall
executable hvm
import: warnings
main-is: Main.hs
other-modules: Type
, Collapse
, Compile
, Extract
, Foreign
, Inject
, Parse
, Reduce
, Show
build-depends: base ^>=4.21.0.0,
mtl ^>=2.3.1,
containers ^>=0.7,
parsec ^>=3.1.17.0,
hs-highlight ^>= 1.0.3,
ansi-terminal == 1.1.1,
process,
libffi,
unix,
file-embed,
hs-source-dirs: src
default-language: GHC2024
c-sources: src/Runtime.c
extra-libraries: c
ghc-options: -Wno-all -threaded