-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchairflyer.cabal
59 lines (54 loc) · 1.3 KB
/
chairflyer.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
name: chairflyer
version: 0.1.0.0
build-type: Simple
cabal-version: >=1.10
library
build-depends: base
ghc-options: -Wall
hs-source-dirs: lib
exposed-modules: Integrators
, SpringSystem
, SpringSystem2
, AcState
, AcSystem
, Vec
, NVector
, Happy
, Atmosphere
, Output
, Units
, Handy
, LiftDrag
, Prop
, Controller
default-language: Haskell2010
test-suite tests
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: test
ghc-options: -Wall
build-depends: base
, chairflyer
default-language: Haskell2010
other-modules: LiftDragTest
, NVectorTest
, VecTest
executable test-ac
hs-source-dirs: test
main-is: ac/Main.hs
build-depends: base
, chairflyer
executable pidspring
hs-source-dirs: test/pidspring
main-is: Main.hs
build-depends: base
, chairflyer
executable webserv
hs-source-dirs: webserv
main-is: Main.hs
build-depends: base
, websockets
, text
, aeson
, chairflyer
, stm