2018-02-07 00:18:16 +00:00
|
|
|
-- Initial tracer-game.cabal generated by cabal init. For further
|
|
|
|
-- documentation, see http://haskell.org/cabal/users-guide/
|
|
|
|
|
|
|
|
name: tracer-game
|
|
|
|
version: 0.0.0.0
|
|
|
|
-- synopsis:
|
|
|
|
-- description:
|
|
|
|
license: GPL-3
|
|
|
|
license-file: LICENSE
|
|
|
|
author: nek0
|
|
|
|
maintainer: nek0@chelnok.de
|
|
|
|
-- copyright:
|
|
|
|
category: Game
|
|
|
|
build-type: Simple
|
|
|
|
extra-source-files: ChangeLog.md
|
|
|
|
cabal-version: >=1.10
|
|
|
|
|
|
|
|
executable tracer-game
|
|
|
|
main-is: Main.hs
|
|
|
|
other-modules: Types
|
|
|
|
, Types.UserData
|
2018-02-17 01:36:06 +00:00
|
|
|
, Types.Map
|
2018-03-03 16:03:17 +00:00
|
|
|
, Types.Interior
|
2018-04-14 16:43:05 +00:00
|
|
|
, Types.ReachPoint
|
2018-06-04 03:29:20 +00:00
|
|
|
, Types.Direction
|
|
|
|
, Types.ImgId
|
2018-06-08 23:17:03 +00:00
|
|
|
, Types.FontId
|
2018-06-04 03:29:20 +00:00
|
|
|
, Types.StateData
|
|
|
|
, Types.Animation
|
2018-06-25 21:46:17 +00:00
|
|
|
, Types.MindMap
|
2018-07-03 00:20:17 +00:00
|
|
|
, Types.Drawable
|
|
|
|
, Types.Collidible
|
2018-07-22 20:31:23 +00:00
|
|
|
, Types.ObjType
|
2018-08-10 06:58:26 +00:00
|
|
|
, Types.ObjClass
|
|
|
|
, Types.Entity
|
|
|
|
, Types.NPCState
|
2018-07-30 12:34:46 +00:00
|
|
|
, Animation
|
2018-02-07 00:18:16 +00:00
|
|
|
, StateMachine
|
2018-02-13 23:54:40 +00:00
|
|
|
, Floorplan
|
2018-03-03 16:03:17 +00:00
|
|
|
, Interior
|
2018-02-07 00:18:16 +00:00
|
|
|
, Init
|
2018-06-08 23:17:03 +00:00
|
|
|
, Load
|
2018-10-12 12:26:06 +00:00
|
|
|
, Menu.Connect
|
2018-10-12 19:40:16 +00:00
|
|
|
, Menu.Adjust
|
2018-06-28 19:07:58 +00:00
|
|
|
, MainGame.WorldMap
|
|
|
|
, MainGame.MindMap
|
2018-04-02 14:29:35 +00:00
|
|
|
, Navigation
|
2018-06-25 21:46:17 +00:00
|
|
|
, MindMap
|
2018-04-14 09:18:37 +00:00
|
|
|
, NPC
|
2018-07-22 20:31:23 +00:00
|
|
|
, Object
|
2018-03-02 01:10:35 +00:00
|
|
|
, Util
|
2018-02-07 00:18:16 +00:00
|
|
|
default-extensions: OverloadedStrings
|
|
|
|
, DeriveGeneric
|
|
|
|
, DataKinds
|
|
|
|
-- other-extensions:
|
2018-05-18 18:04:47 +00:00
|
|
|
build-depends: base >=4.10 && <5
|
2018-02-07 00:18:16 +00:00
|
|
|
, affection == 0.0.0.9
|
2018-07-19 02:51:07 +00:00
|
|
|
, sdl2 >= 2.4.0.0
|
2018-02-07 00:18:16 +00:00
|
|
|
, OpenGL
|
2018-06-03 02:25:19 +00:00
|
|
|
, nanovg >= 0.6.0.0
|
2018-02-07 00:18:16 +00:00
|
|
|
, stm
|
|
|
|
, text
|
|
|
|
, containers
|
2018-05-17 11:06:13 +00:00
|
|
|
, ecstasy >= 0.2.1.0
|
2018-02-07 00:18:16 +00:00
|
|
|
, linear
|
2018-07-19 02:51:07 +00:00
|
|
|
, matrix >= 0.3.6.0
|
2018-02-13 23:54:40 +00:00
|
|
|
, random
|
2018-02-15 18:42:07 +00:00
|
|
|
, vector
|
2018-04-02 14:29:35 +00:00
|
|
|
, astar
|
|
|
|
, unordered-containers
|
2018-05-20 22:40:40 +00:00
|
|
|
, JuicyPixels
|
|
|
|
, JuicyPixels-extra
|
|
|
|
, bytestring
|
2018-06-23 22:41:51 +00:00
|
|
|
, algebraic-graphs
|
2018-08-10 06:58:26 +00:00
|
|
|
, mtl
|
2018-02-07 00:18:16 +00:00
|
|
|
hs-source-dirs: src
|
2018-03-04 21:24:57 +00:00
|
|
|
ghc-options: -Wall -threaded
|
2018-02-07 00:18:16 +00:00
|
|
|
default-language: Haskell2010
|