54 lines
1.7 KiB
Text
54 lines
1.7 KiB
Text
-- Initial pokeNeige.cabal generated by cabal init. For further
|
|
-- documentation, see http://haskell.org/cabal/users-guide/
|
|
|
|
name: pokeNeige
|
|
version: 0.1.0.0
|
|
synopsis: A web pokemon game
|
|
-- description:
|
|
homepage: https://git.marvid.fr/PokeNeige
|
|
license: BSD3
|
|
license-file: LICENSE
|
|
author: Tissevert
|
|
maintainer: tissevert+devel@marvid.fr
|
|
-- copyright:
|
|
category: Game
|
|
build-type: Simple
|
|
extra-source-files: ChangeLog.md
|
|
cabal-version: >=1.10
|
|
|
|
executable pokeNeige
|
|
main-is: Main.hs
|
|
other-modules: Area
|
|
, Area.Climate
|
|
, Area.NaturalElements
|
|
, Area.Tile
|
|
, Automaton
|
|
, Character
|
|
, Config
|
|
, Game
|
|
, Item
|
|
, Message
|
|
, Message.Client
|
|
, Message.Server
|
|
, Pokemon
|
|
, Pokemon.Move
|
|
, Pokemon.Species
|
|
, Pokemon.Stats
|
|
, Pokemon.Status
|
|
, Pokemon.Type
|
|
, Tool.Array
|
|
-- other-extensions:
|
|
build-depends: base >=4.11 && <4.12
|
|
, aeson
|
|
, bytestring
|
|
, containers
|
|
, http-types
|
|
, mtl
|
|
, vector
|
|
, wai
|
|
, wai-websockets
|
|
, warp
|
|
, websockets
|
|
ghc-options: -Wall
|
|
hs-source-dirs: src
|
|
default-language: Haskell2010
|