-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlunarLanding.cabal
35 lines (29 loc) · 994 Bytes
/
lunarLanding.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
cabal-version: >=1.10
name: lunarLanding
version: 0.1.0.0
synopsis: Your mission is to land safely on the moon.
-- A longer description of the package.
-- description:
homepage: https://github.com/ajuggler
-- A URL where users can report bugs.
-- bug-reports:
license: GPL-2
license-file: LICENSE
author: Antonio Hernandez
maintainer: [email protected]
-- A copyright notice.
-- copyright:
category: Game
build-type: Simple
extra-source-files: CHANGELOG.md
executable lunarLanding
main-is: Main.hs
-- Modules included in this executable, other than Main.
other-modules: Data, Init, Physics, Render
-- LANGUAGE extensions used by modules in this package.
-- other-extensions:
build-depends: base >=4.14 && <4.15
, ansi-terminal
, mtl
hs-source-dirs: app
default-language: Haskell2010