raycharles/raycharles.cabal

37 lines
1.1 KiB
Plaintext
Raw Permalink Normal View History

2018-10-25 15:21:51 +00:00
-- Initial raycharles.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: raycharles
version: 0.0.0.0
synopsis: A simple raytracer on the Console
-- description:
license: BSD3
license-file: LICENSE
author: nek0
maintainer: nek0@chelnok.de
-- copyright:
category: Graphics
build-type: Simple
extra-source-files: CHANGELOG.md
cabal-version: >=1.10
executable raycharles
main-is: Main.hs
2018-10-25 21:31:21 +00:00
other-modules: Map
, Types
2018-10-25 15:21:51 +00:00
-- other-extensions:
2018-10-25 21:31:21 +00:00
build-depends: base >=4.11 && <5
, linear
, matrix
-- , ansi-terminal
-- , terminal-size
2018-10-25 21:31:21 +00:00
, suspend
, monad-loops
, deepseq
2018-10-26 01:05:32 +00:00
, parallel
2018-10-26 02:18:06 +00:00
, vector
, vty
2018-10-25 15:21:51 +00:00
hs-source-dirs: src
2018-10-26 01:05:32 +00:00
ghc-options: -Wall -threaded
2018-10-25 15:21:51 +00:00
default-language: Haskell2010