cabal-version: 2.2
name: codeworld-raycaster
version: 0.1.0.0
synopsis: Simple raycaster
license: AGPL-3.0-or-later
license-file: LICENSE
author: Jack Kelly
maintainer: jack@jackkelly.name
copyright: (c) 2019 Jack Kelly
category: Game Engine
build-type: Simple
extra-source-files: CHANGELOG.md, README.md
homepage: https://git.sr.ht/~jack/misc
library
exposed-modules: Controller
, Renderer
, State
build-depends: base >= 4.10 && < 5
, array >= 0.5.2.0 && < 0.6
, codeworld-api >= 0.3 && < 0.5
, text >= 1.2.2.2 && < 1.3
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
executable codeworld-raycaster
main-is: Main.hs
build-depends: base >= 4.10 && < 5
, codeworld-api
, codeworld-raycaster
hs-source-dirs: app
default-language: Haskell2010
ghc-options: -Wall -threaded