-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhalcyon.cabal
105 lines (101 loc) · 2.58 KB
/
halcyon.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
cabal-version: 3.0
name: halcyon
version: 0.4.0.0
-- synopsis:
-- description:
license: BSD-3-Clause
license-file: LICENSE
author: 0xpantera
maintainer: [email protected]
-- copyright:
category: System
build-type: Simple
extra-doc-files: CHANGELOG.md
-- extra-source-files:
common warnings
ghc-options: -Wall
library
import: warnings
exposed-modules:
-- Main module
Halcyon
-- Hierarchical modules
, Halcyon.Core
, Halcyon.Frontend
, Halcyon.Backend
, Halcyon.Driver
-- Core types (needed for qualified imports)
, Halcyon.Core.Assembly
, Halcyon.Core.Ast
, Halcyon.Core.Tacky
other-modules:
-- Core internals
Halcyon.Core.Settings
, Halcyon.Core.Monad
, Halcyon.Core.TackyGen
-- Frontend internals
, Halcyon.Frontend.Lexer
, Halcyon.Frontend.Parse
, Halcyon.Frontend.Tokens
-- Backend internals
, Halcyon.Backend.Codegen
, Halcyon.Backend.Emit
, Halcyon.Backend.ReplacePseudos
-- Driver internals
, Halcyon.Driver.Cli
, Halcyon.Driver.Pipeline
, Halcyon.Driver.External
, Halcyon.Driver.Output
, Halcyon.Driver.Stages
-- other-extensions:
build-depends: base ^>=4.20.0.0
, bytestring
, containers
, directory
, filepath
, megaparsec
, mtl
, optparse-applicative
, parser-combinators
, text
, transformers
, typed-process
hs-source-dirs: lib
default-language: GHC2024
executable halcyon
import: warnings
main-is: Main.hs
-- other-modules:
-- other-extensions:
build-depends:
base ^>=4.20.0.0
, halcyon
hs-source-dirs: app
default-language: GHC2024
test-suite halcyon-test
import: warnings
default-language: GHC2024
other-modules:
Test.Lexer
, Test.Parser
, Test.Tacky
, Test.Assembly
, Test.Pipeline
, Test.Common
-- other-extensions:
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
build-depends:
base ^>=4.20.0.0
, halcyon
, tasty ^>=1.4
, tasty-hspec ^>=1.2
, tasty-hedgehog ^>=1.4
, tasty-golden ^>=2.3
, hedgehog ^>=1.4
, hspec ^>=2.11
, text
, megaparsec
, directory
, filepath