raycharles/raycharles.cabal

34 lines
1008 B
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
, timers
, suspend
, monad-loops
, terminal-size
, deepseq
hs-source-dirs: src
default-language: Haskell2010