-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathKuifje-compiler.cabal
33 lines (31 loc) · 1.07 KB
/
Kuifje-compiler.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
-- Initial Kuifje-compiler.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: Kuifje-compiler
version: 0.1.0.0
synopsis: An imperative language for Quantitative Information Flow
-- description:
license: BSD3
license-file: LICENSE
author: HDSpray
maintainer: d.jian@unsw.edu.au
homepage: https://github.com/HDSpray/Kuifje
-- copyright:
category: Language
build-type: Simple
extra-source-files: ChangeLog.md, README.md
cabal-version: >=1.10
executable Kuifje-compiler
main-is: Main.hs
other-modules:
Kuifje.Env
Kuifje.Parse
Kuifje.PrettyPrint
Kuifje.Run
Kuifje.Syntax
Kuifje.Translator
-- Kuifje.TypeChecker
Kuifje.Value
-- other-extensions:
build-depends: base >=4.11 && <4.12, lens >=4.17 && <4.18, kuifje >=0.1 && <0.2, parsec >=3.1 && <3.2, boxes >=0.1 && < 0.2, containers >=0.5 && < 0.7
-- hs-source-dirs: src
default-language: Haskell2010