-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathquick-backend.cabal
79 lines (73 loc) · 2.08 KB
/
quick-backend.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
67
68
69
70
71
72
73
74
75
76
77
78
79
cabal-version: >= 1.18
name: quick-backend
version: 0.1.0.0
description: Quick and Reusable Code Generation for Idris
homepage: https://github.com/thautwarm/PPL2020-quick-and-reusable-code-generation-for-idris#readme
bug-reports: https://github.com/thautwarm/PPL2020-quick-and-reusable-code-generation-for-idris/issues
author: thautwarm
maintainer: [email protected]
copyright: MIT
license: BSD3
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
source-repository head
type: git
location: https://github.com/thautwarm/PPL2020-quick-and-reusable-code-generation-for-idris
executable idris-codegen-qb
main-is: Main.hs
other-modules:
Quick.St
Quick.SDDecl
Quick.SymbolEmulation
Quick.Lower
Quick.Dump
Quick.Weakest
Quick.Row
Quick.Reusable
IRTS.CodegenQB
hs-source-dirs:
src
build-depends:
idris
, base
, containers
, directory
, filepath
, haskeline >= 0.7
, mtl
, transformers
, text
, lens
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: mintty >= 0.1 && < 0.2
, Win32 < 2.7
ghc-prof-options: -auto-all -caf-all
ghc-options: -threaded -rtsopts -funbox-strict-fields -Wno-partial-type-signatures
default-extensions:
LambdaCase
, ViewPatterns
, NamedFieldPuns
, FlexibleInstances
, MultiParamTypeClasses
, GADTs
, FunctionalDependencies
, ScopedTypeVariables
, PartialTypeSignatures
, PatternGuards
, ExistentialQuantification
, RankNTypes