2022-11-30 13:38:12 -08:00
|
|
|
cabal-version: 3.0
|
|
|
|
name: parabox
|
|
|
|
version: 0.1.0.0
|
|
|
|
-- synopsis:
|
|
|
|
-- description:
|
|
|
|
license: ISC
|
|
|
|
license-file: LICENSE
|
|
|
|
author: Eric Mertens
|
|
|
|
maintainer: emertens@galois.com
|
|
|
|
-- copyright:
|
|
|
|
category: Game
|
|
|
|
build-type: Simple
|
|
|
|
extra-doc-files: CHANGELOG.md
|
|
|
|
-- extra-source-files:
|
|
|
|
|
|
|
|
common warnings
|
|
|
|
ghc-options: -Wall
|
|
|
|
|
|
|
|
executable parabox
|
|
|
|
import: warnings
|
|
|
|
main-is: Main.hs
|
2022-12-04 16:45:15 -08:00
|
|
|
other-modules: Rendering, Model, Parser
|
2022-11-30 13:38:12 -08:00
|
|
|
-- other-modules:
|
2022-12-02 10:54:31 -08:00
|
|
|
default-extensions: ImportQualifiedPost, BlockArguments, LambdaCase
|
|
|
|
|
2022-11-30 13:38:12 -08:00
|
|
|
ghc-options: -threaded
|
2022-12-05 17:00:19 -08:00
|
|
|
build-depends: base ^>=4.17.0.0, array, containers, vty, directory, filepath
|
2022-11-30 13:38:12 -08:00
|
|
|
hs-source-dirs: app
|
|
|
|
default-language: Haskell2010
|