-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdream.cabal
36 lines (33 loc) · 1.37 KB
/
dream.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
cabal-version: 2.4
name: dream
version: 0.1.0.0
synopsis: The compiler for the dream language
description: A small compiler written as an exercise to better understand compilers and help me with my studies.
homepage: https://github.com/Reijix/dream
license: MIT
author: Leon Vatthauer
maintainer: [email protected]
category: Compiler
Tested-With: GHC ==9.2.2
extra-source-files: CHANGELOG.md
-- source repo info
source-repository head
type: git
location: git://github.com/Reijix/dream.git
library compiler-lib
exposed-modules: Parser, ParserError, Dot, NameAnalysis, TypeAnalysis, AnalysisError, ConstantFolding, IRGenerator, DumpIR, CodeGenerator
build-depends: base >= 4.16 && < 4.18,
containers, mtl, parsec, extra
other-modules: ArchX86, Arch, IRSyntax, Lexer, MemoryLocation, MemoryLocationAssigner, Symbol, SymbolTable, Syntax
hs-source-dirs: parser, analysis, dot-generator, constantfolding, IR, backend
default-language: Haskell2010
executable dreamc
main-is: Main.hs
build-depends: base,
compiler-lib,
mtl,
extra,
optparse-applicative,
process
hs-source-dirs: main
default-language: Haskell2010