raycharles/raycharles.cabal

37 lines
1.1 KiB
Plaintext

-- 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
other-modules: Map
, Types
-- other-extensions:
build-depends: base >=4.11 && <5
, linear
, matrix
-- , ansi-terminal
-- , terminal-size
, suspend
, monad-loops
, deepseq
, parallel
, vector
, vty
hs-source-dirs: src
ghc-options: -Wall -threaded
default-language: Haskell2010