-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRin.cabal
48 lines (45 loc) · 1.18 KB
/
Rin.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
-- Initial Rin.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
name: Rin
version: 0.1.0.0
synopsis: Yet another functional language compiler
-- description:
license: MIT
license-file: LICENSE
author: SoraKasugano
maintainer: meimisaki@gmail.com
-- copyright:
category: Language
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/meimisaki/Rin
executable Rin
main-is: Main.hs
other-modules:
Parser.Lexer,
Parser.Parser
other-extensions:
DeriveFunctor,
GeneralizedNewtypeDeriving,
StandaloneDeriving,
FlexibleContexts,
FlexibleInstances,
UndecidableInstances,
LambdaCase,
PatternSynonyms,
RecordWildCards,
ViewPatterns,
CPP
build-depends:
base >=4.8,
containers >=0.5,
pretty >=1.1,
mtl >=2.2,
bytestring >=0.10,
array >=0.5
hs-source-dirs: src
build-tools: alex, happy
default-language: Haskell2010