-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtopos.cabal
49 lines (43 loc) · 1003 Bytes
/
topos.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
cabal-version: 3.4
name: topos
version: 0.1.0
homepage: https://github.com/topoi-lang/topos
license: BSD-3-Clause
tested-with: GHC == 8.10.5
common haskell
default-language: Haskell2010
default-extensions: StrictData
ghc-options:
-Weverything
-Wno-name-shadowing
-Wno-missing-import-lists
-Wno-safe
-Wno-unsafe
-Wno-implicit-prelude
-Wno-name-shadowing
-Wall-missed-specialisations
if (impl(ghc >= 8.8))
ghc-options: -Wno-missing-deriving-strategies
if (impl(ghc >= 8.10))
ghc-options:
-Wno-missing-safe-haskell-mode
-Wno-prepositive-qualified-module
executable topos
hs-source-dirs: app
main-is: Main.hs
build-depends:
, base
, topos
, Z-Data >= 1.2.0
library
import: haskell
hs-source-dirs: src
exposed-modules: Tokeniser
, Parser
other-modules: Paths_topos
build-depends:
, base
, Z-Data >= 1.2.0
source-repository head
type: git
location: https://github.com/topoi-lang/topos