-
Notifications
You must be signed in to change notification settings - Fork 1
/
idris-go.cabal
66 lines (57 loc) · 1.62 KB
/
idris-go.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
Name: idris-go
Version: 0.0.0.1
License: MIT
License-file: LICENSE
Author: Andreas Stührk
Maintainer: Andreas Stührk <andy@hammerhartes.de>
Build-Type: Custom
Cabal-Version: >= 1.8
custom-setup
setup-depends: base, Cabal
Executable idris-codegen-go
Main-is: Main.hs
hs-source-dirs: src
Build-depends: idris
, base
, containers
, directory
, filepath
, formatting
, haskeline >= 0.7
, mtl
, process
, transformers
, text
other-modules: IRTS.CodegenGo
, Paths_idris_go
if os(linux)
cpp-options: -DLINUX
build-depends: unix < 2.8
if os(freebsd)
cpp-options: -DFREEBSD
build-depends: unix < 2.8
if os(dragonfly)
cpp-options: -DDRAGONFLY
build-depends: unix < 2.8
if os(darwin)
cpp-options: -DMACOSX
build-depends: unix < 2.8
if os(windows)
cpp-options: -DWINDOWS
build-depends: Win32 < 2.4
ghc-prof-options: -auto-all -caf-all
ghc-options: -threaded -rtsopts -funbox-strict-fields
Test-suite end-to-end-tests
Type: exitcode-stdio-1.0
Main-is: TestRun.hs
hs-source-dirs: test
Build-depends: base
, bytestring
, directory
, filepath
, process
, tasty
, tasty-golden >= 2.0
, utf8-string
ghc-prof-options: -auto-all -caf-all
ghc-options: -threaded -rtsopts -with-rtsopts=-N -funbox-strict-fields