-
Notifications
You must be signed in to change notification settings - Fork 0
/
mapview-noexc.cabal
106 lines (99 loc) · 3.49 KB
/
mapview-noexc.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
name: mapview-noexc
version: 0.1.0.0
synopsis: Non-stdlib callbacks and types for mapview that are useful for working specifically with NOEXC flights.
-- description:
homepage: https://mapview.noexc.org/
license: MIT
license-file: LICENSE
author: Ricky Elrod
maintainer: ricky@elrod.me
-- copyright:
category: KD8ZRC
build-type: Simple
-- extra-source-files:
cabal-version: >= 1.10
library
exposed-modules:
-- NBP4
KD8ZRC.Flight.NBP4.CRC
, KD8ZRC.Flight.NBP4.History
, KD8ZRC.Flight.NBP4.Parser
, KD8ZRC.Flight.NBP4.Types
-- NBP3
, KD8ZRC.Flight.NBP3.CRC
, KD8ZRC.Flight.NBP3.History
, KD8ZRC.Flight.NBP3.Parser
, KD8ZRC.Flight.NBP3.Types
-- other-modules:
-- other-extensions:
build-depends: base >= 4 && < 5
, aeson >= 0.9 && < 1
, bytestring >= 0.10
, coordinate >= 0.0.15 && < 0.1
, crc16 >= 0.1 && < 0.2
, lens >= 4.4 && < 5
, old-locale >= 1.0
, strict >= 0.3 && < 0.4
, text >= 1.1
, thyme >= 0.3.5 && < 0.4
, transformers >= 0.3 && < 0.6
, trifecta >= 1.4.3 && < 2
, mapview >= 3
, mapview-gpsd
, mapview-json
, mapview-websocket
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall -Werror -threaded -O2 -fwarn-incomplete-uni-patterns
--------------------------------------------------------------------------------
-- New flights up top!
-- Set nbpN's Default field to False everywhere except for the latest flight.
--------------------------------------------------------------------------------
flag nbp4
Description: Build for NBP4
Manual: True
Default: True
executable nbp4
main-is: Main.hs
hs-source-dirs: src/KD8ZRC/Flight/NBP4
build-depends: base >= 4 && < 5
, aeson >= 0.9 && < 1
, bytestring >= 0.10
, directory >= 1.2 && < 2
, lens >= 4.4 && < 5
, text >= 1.1
, transformers >= 0.3 && < 0.6
, mapview-gpsd
, mapview-json
, mapview-noexc
, mapview-websocket
, mapview >= 3
default-language: Haskell2010
ghc-options: -Wall -Werror -threaded -O2 -fwarn-incomplete-uni-patterns
if flag(nbp4)
buildable: True
else
buildable: False
--------------------------------------------------------------------------------
flag nbp3
Description: Build for NBP3
Manual: True
Default: False
executable nbp3
main-is: Main.hs
hs-source-dirs: src/KD8ZRC/Flight/NBP3
build-depends: base >= 4 && < 5
, aeson >= 0.9 && < 1
, bytestring >= 0.10
, directory >= 1.2 && < 2
, text >= 1.1
, transformers >= 0.3 && < 0.6
, mapview-noexc
, mapview-websocket
, mapview >= 3
default-language: Haskell2010
ghc-options: -Wall -Werror -threaded -O2 -fwarn-incomplete-uni-patterns
if flag(nbp3)
buildable: True
else
buildable: False