-
Notifications
You must be signed in to change notification settings - Fork 2
/
Handy.cabal
23 lines (21 loc) · 912 Bytes
/
Handy.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
-- Initial Handy.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
name: Handy
version: 0.1.0
synopsis: An ARM7TDMI Emulator written for a Trinity College Dublin undergraduate degree final project
homepage: https://github.com/minuteman3/fyp
license: BSD3
license-file: LICENSE
author: Miles McGuire
maintainer: miles@milesmcguire.com
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
executable Handy
main-is: Handy/Main.hs
-- other-modules:
other-extensions: GADTs, StandaloneDeriving
build-depends: base >=4.6 && <4.7, mtl >=2.1 && <2.2, binary >=0.7 && <0.8, bytestring >=0.10 && <0.11,
containers >=0.5.4.0 && <0.6
hs-source-dirs: src
default-language: Haskell2010