-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathlecture.cabal
25 lines (24 loc) · 960 Bytes
/
lecture.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
name: lecture
version: 0.1.0.0
synopsis: Code for CPSC 312 Lectures
description: Code for CPSC 312 Lectures
homepage: https://github.com/steven-wolfman/cpsc-312-lecture-code#readme
author: Steve Wolfman
maintainer: wolf@cs.ubc.ca
copyright: 2021 Steve Wolfman
category: Education
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
exposed-modules: Lecture1
, Lecture2
, Lecture3
, Lecture4
build-depends: base >= 4.7 && < 5
, random
-- NOTE(ejconlon) Enable this and commit to cabal sandbox to use doctest
-- `stack exec doctest -- --args --go --here` works but for cabal
-- I think you have to run the binary at `cabal list-bin doctest` or get it on your path.
-- build-tool-depends: doctest:doctest
default-language: Haskell2010