wizard-wipeout/wizard-wipeout.cabal
2024-05-01 23:53:12 +02:00

97 lines
2.9 KiB
Plaintext

cabal-version: 3.0
name: wizard-wipeout
version: 0.0.0.0
synopsis: A game about combating wizards
-- description:
license: GPL-3.0-or-later
license-file: LICENSE
author: nek0
maintainer: nek0@nek0.eu
-- copyright:
category: Game
build-type: Simple
extra-doc-files: CHANGELOG.md
-- extra-source-files:
common warnings
ghc-options: -Wall -threaded -rtsopts
library
import: warnings
exposed-modules: Library.Map
Library.Types
Library.Types.Communication
Library.Types.Map
Library.Types.Player
build-depends: base >=4.17.2.1
, aeson
, linear
, matrix
, random
, uuid
, vty
hs-source-dirs: src-lib
default-language: GHC2021
executable wizard-wipeout-client
import: warnings
main-is: Main.hs
other-modules: Client.Communication
Client.Game
Client.Graphics
Client.Types
-- other-extensions:
build-depends: base >=4.17.2.1
, aeson
, bytestring
, linear
, matrix
, monad-loops
, mtl
, network
, optparse-applicative
, stm
, unix
, uuid
, vector
, vty
, vty-crossplatform
, wizard-wipeout
hs-source-dirs: src-client
default-language: GHC2021
executable wizard-wipeout-server
import: warnings
main-is: Main.hs
other-modules: Server.Communication
Server.Communication.Handler
Server.Communication.Receive
Server.Communication.Send
Server.Game
Server.Game.Update
Server.Map
Server.Types
Server.Util
-- other-extensions:
build-depends: base >=4.17.2.1
, aeson
, bytestring
, directory
, linear
, matrix
, monad-loops
, mtl
, network
, optparse-applicative
, text
, time
, random
, stm
, unix
, uuid
, vector
, wizard-wipeout
, yaml
hs-source-dirs: src-server
default-language: GHC2021