-
Notifications
You must be signed in to change notification settings - Fork 0
/
koak.cabal
51 lines (48 loc) · 1.07 KB
/
koak.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
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.31.1.
--
-- see: https://github.com/sol/hpack
--
-- hash: d21079f4150ff3523a06bd25deea13445185520663d969b507fdad6cbd01624c
name: koak
version: 0.1.0.0
category: Web
homepage: https://github.com/githubuser/koak-new#readme
author: Author name here
maintainer: example@example.com
copyright: 2019 Author name here
license: BSD3
build-type: Simple
extra-source-files:
README.md
executable koak
main-is: Main.hs
other-modules:
Annotation
Codegen.Codegen
Codegen.Prelude
Codegen.Specialization
Codegen.Utils
Errors
Misc
Parser.Lang
Parser.Lib
Passes.Deserialization
Passes.Inference
Types
Unifier
Paths_koak
hs-source-dirs:
src
build-depends:
base >=4.7 && <5
, bytestring
, containers
, llvm-hs >=6
, llvm-hs-pretty
, llvm-hs-pure
, mtl
, optparse-applicative
, process
, text
default-language: Haskell2010