-
Notifications
You must be signed in to change notification settings - Fork 0
/
hs_imc_framework.cabal
211 lines (151 loc) · 6.03 KB
/
hs_imc_framework.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
cabal-version: 2.4
name: IMC
version: 0.1.0.0
-- A short (one-line) description of the package.
synopsis: A Haskell Framework for autonomous vehicles built upon the LSTS toolchain.
-- A longer description of the package.
-- description:
-- A URL where users can report bugs.
-- bug-reports:
-- The license under which the package is released.
-- license:
author: choiwd
maintainer: choiwd
-- A copyright notice.
-- copyright:
-- category:
extra-source-files: CHANGELOG.md
common common-dependencies
build-depends: base ^>= 4.16.4.0
library
-- Modules exported by the library.
exposed-modules: IMC.Base
, IMC.Messages
, IMC.Network
, IMC.Maneuvers
, IMC.Maneuvers.FollowRef
, IMC.Control.BehaviorTree
, IMC.Control.Utils
, IMC.Control.Subscribe
-- Modules included in this library but not exported.
other-modules:
-- LANGUAGE extensions used by modules in this package.
-- other-extensions:
-- Other library packages from which modules are imported.
build-depends: base ^>=4.16.4.0
-- Data types
, cereal ^>= 0.5.8.3
, bytestring ^>= 0.11.4.0
, containers ^>= 0.6.5.1
, data-default ^>= 0.7.1.1
, vector ^>= 0.13.0.0
-- Generics and lenses
, generic-lens ^>= 2.2.1.0
, lens ^>= 5.2.2
-- Monad transformers
, mtl ^>= 2.3.1
-- Network
, connection ^>= 0.3.1
, time ^>= 1.12.2
, network-info ^>= 0.2.1
-- Yampa/FRP
, Yampa ^>= 0.13.6
-- Directories containing source files.
hs-source-dirs: IMC
-- Base language which the package is written in.
default-language: Haskell2010
executable followSys
--ghc-options: -fwarn-incomplete-patterns
--ghc-options: -freduction-depth=0 --Uses too much memory and does not compile hahaha
import: common-dependencies
main-is: Main.hs
-- Modules included in this executable, other than Main.
--other-modules:
-- LANGUAGE extensions used by modules in this package.
--other-extensions:
build-depends:
-- Data types
, data-default ^>= 0.7.1.1
-- Generics and lenses
, lens ^>= 5.2.2
-- Time
, time ^>= 1.12.2
-- Yampa/FRP
, Yampa ^>= 0.13.6
-- command line arg parsing
, cmdargs ^>= 0.10.22
-- This library
, IMC
hs-source-dirs: followSys
default-language: Haskell2010
executable subscribe
main-is: Main.hs
-- Modules included in this executable, other than Main.
-- other-modules:
-- LANGUAGE extensions used by modules in this package.
-- other-extensions:
build-depends: base ^>= 4.16.4.0
-- Time
, time ^>= 1.12.2
-- Network
, connection ^>= 0.3.1
-- Monad transformers
, mtl ^>= 2.3.1
-- command line arg parsing
, cmdargs ^>= 0.10.22
-- Generics and lenses
, lens ^>= 5.2.2
, IMC
hs-source-dirs: subscribe
default-language: Haskell2010
executable followForm
--ghc-options: -fwarn-incomplete-patterns
--ghc-options: -freduction-depth=0 --Uses too much memory and does not compile hahaha
main-is: Main.hs
-- Modules included in this executable, other than Main.
other-modules: FollowFormationTree
, SubTrees
, SubTrees.Commons
, SubTrees.ManageTask
, SubTrees.PerformTask
, SubTrees.StayInFormation
, SendTask
-- LANGUAGE extensions used by modules in this package.
--other-extensions:
default-extensions:
Arrows
, OverloadedLabels
build-depends: base ^>= 4.16.4.0
-- Data types
, data-default ^>= 0.7.1.1
, bytestring ^>= 0.11.4.0
-- Lenses
, lens ^>= 5.2.2
-- Deep forced evaluation
, deepseq ^>= 1.4.6.1
-- Random generator
, random ^>= 1.2.1.1
-- Time
, time ^>= 1.12.2
-- Yampa/FRP
, Yampa ^>= 0.13.6
-- command line arg parsing
, cmdargs ^>= 0.10.22
-- This library
, IMC
hs-source-dirs: followForm
default-language: Haskell2010
executable extractIMC
main-is: Main.hs
-- Modules included in this executable, other than Main.
-- other-modules:
-- LANGUAGE extensions used by modules in this package.
-- other-extensions:
build-depends: base ^>= 4.16.4.0
, xml ^>= 1.3.14
, text ^>= 2.0.1
, containers ^>= 0.6.5.1
-- command line arg parsing
, cmdargs ^>= 0.10.22
hs-source-dirs: extractIMC
default-language: Haskell2010