-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOpenBook.cabal
34 lines (31 loc) · 1.05 KB
/
OpenBook.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
cabal-version: 2.4
-- Initial package description 'OpenBook.cabal' generated by 'cabal init'.
-- For further documentation, see http://haskell.org/cabal/users-guide/
name: OpenBook
version: 0.1.0.0
synopsis: A program for easily retreving information for open book exams
-- description:
homepage: www.hobson.space
-- bug-reports:
license: GPL-3.0-only
license-file: LICENSE
author: James Hobson
maintainer: [email protected]
-- copyright:
category: Educational
extra-source-files: CHANGELOG.md
optimization: 2
executable OpenBook
main-is: Main.hs
other-modules: Parser, Lexer, Search
-- other-extensions:
build-depends: base >=4.9.0.0
, brick
, vty
, text
, array
, process
hs-source-dirs: src
ghc-options: -threaded
build-tools: alex, happy
default-language: Haskell2010