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-07 10:11:06 -08:00
|
|
|
other-modules: Rendering, Model, Parser, BigFont
|
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
|
2024-05-22 14:16:46 -07:00
|
|
|
build-depends:
|
|
|
|
array,
|
|
|
|
base ^>={4.17, 4.18, 4.19, 4.20},
|
|
|
|
containers,
|
|
|
|
directory,
|
|
|
|
filepath,
|
|
|
|
vty-crossplatform,
|
|
|
|
vty ^>= 6.2,
|
2022-11-30 13:38:12 -08:00
|
|
|
hs-source-dirs: app
|
|
|
|
default-language: Haskell2010
|