parabox/parabox.cabal
2024-05-22 14:16:46 -07:00

37 lines
901 B
Plaintext

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
other-modules: Rendering, Model, Parser, BigFont
-- other-modules:
default-extensions: ImportQualifiedPost, BlockArguments, LambdaCase
ghc-options: -threaded
build-depends:
array,
base ^>={4.17, 4.18, 4.19, 4.20},
containers,
directory,
filepath,
vty-crossplatform,
vty ^>= 6.2,
hs-source-dirs: app
default-language: Haskell2010