-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlearn-physics-with-fp.cabal
90 lines (76 loc) · 1.86 KB
/
learn-physics-with-fp.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
cabal-version: 3.0
name: learn-physics-with-fp
version: 0.1.0.0
author: Fischer Bordwell
maintainer: [email protected]
common warnings
ghc-options: -Wall
library
import: warnings
exposed-modules:
CoordinateSystems
Electricity
Geometry
Mechanics1D
Mechanics3D
MOExamples
MultipleObjects
Newton2
SimpleVec
build-depends:
, base >=4.16.4.0 && <5
, diagrams-cairo
, diagrams-lib
, gloss
, gnuplot ^>=0.5.7
, mtl ^>=2.2.2
, not-gloss
, spatial-math
hs-source-dirs: src
default-language: Haskell2010
executable main
main-is: Main.hs
build-depends:
, base >=4.16.4.0 && <5
, gnuplot ^>=0.5.7
hs-source-dirs: app
default-language: Haskell2010
executable listing_17_1
main-is: listing_17_1.hs
build-depends:
, base >=4.16.4.0 && <5
, gloss
, gnuplot ^>=0.5.7
, learn-physics-with-fp
hs-source-dirs: app
default-language: Haskell2010
executable listing_20_2
main-is: listing_20_2.hs
build-depends:
, base >=4.16.4.0 && <5
, gloss
, gnuplot ^>=0.5.7
, learn-physics-with-fp
, not-gloss
hs-source-dirs: app
default-language: Haskell2010
executable listing_20_3
main-is: listing_20_3.hs
build-depends:
, base >=4.16.4.0 && <5
, gloss
, gnuplot ^>=0.5.7
, learn-physics-with-fp
, not-gloss
hs-source-dirs: app
default-language: Haskell2010
executable listing_20_4
main-is: listing_20_4.hs
build-depends:
, base >=4.16.4.0 && <5
, gloss
, gnuplot ^>=0.5.7
, learn-physics-with-fp
, not-gloss
hs-source-dirs: app
default-language: Haskell2010