-
Notifications
You must be signed in to change notification settings - Fork 0
/
pilot.cabal
54 lines (47 loc) · 1.92 KB
/
pilot.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
cabal-version: 2.4
name: pilot
version: 0.1.0.0
synopsis: EDSL for generating realtime C in a stream-programming style
-- description:
-- bug-reports:
license: BSD-3-Clause
license-file: LICENSE
author: Alexander Vieth
maintainer: [email protected]
-- copyright:
-- category:
extra-source-files: CHANGELOG.md
library
exposed-modules: Language.Pilot
Language.Pilot.Meta
Language.Pilot.Object
Language.Pilot.Object.Point
Language.Pilot.Repr
Language.Pilot.Types
Language.Pilot.Types.Logic
Language.Pilot.Types.Nat
Language.Pilot.Types.Represented
Language.Pilot.Interp.C
Language.Pilot.Interp.C.Util
Language.Pilot.Interp.Pure
Language.Pilot.Interp.Pure.PrefixList
Language.Pilot.Interp.Pure.Point
Language.Pilot.Nominal
Language.Pilot.Examples
Language.Pilot.Examples.Copilot
Language.Pilot.Examples.Copilot.Clock
Language.Pilot.Examples.Copilot.Counter
Language.Pilot.Examples.Copilot.Engine
Language.Pilot.Examples.Copilot.Heater
Language.Pilot.Examples.Copilot.LTL
Language.Pilot.Examples.Copilot.Voting
build-depends: base,
containers,
language-c99,
pretty,
transformers,
text
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -fwarn-incomplete-patterns
-fwarn-unused-imports