-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhaskell-stuff.cabal
51 lines (45 loc) · 1.3 KB
/
haskell-stuff.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
cabal-version: 2.4
name: haskell-stuff
version: 0.1.0.0
license: MIT
author: Oscar McNoe
maintainer: [email protected]
foreign-library myLib
type: native-shared
if os(Windows)
options: standalone
mod-def-file: MyLib/MyLib.def
other-modules: Fibonacci
build-depends: base ^>=4.19.2.0
hs-source-dirs: MyLib
default-language: GHC2021
executable astar
main-is: AStar.hs
build-depends:
base ^>=4.19.2.0,
array ^>=0.5.5.0,
containers ^>=0.6.8,
PSQueue ^>=1.2.0,
astar ^>=0.3.0.0
default-language: GHC2021
ghc-options: -Wall
executable graph
main-is: Graph.hs
build-depends:
base ^>=4.19.2.0,
containers ^>=0.6.8
default-language: GHC2021
ghc-options: -Wall
executable primes
main-is: Primes.hs
build-depends:
base ^>=4.19.2.0,
containers ^>=0.6.8
default-language: GHC2021
ghc-options: -Wall
executable y
main-is: Y.hs
build-depends: base ^>=4.19.2.0
default-language: GHC2021
-- -O0 as Y combinator breaks optimizer :) "Simplifier ticks exhausted"
ghc-options: -Wall -O0