tracer/tracer-game.cabal

87 lines
2.8 KiB
Plaintext
Raw Permalink Normal View History

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
, Types.Map
2018-03-03 16:03:17 +00:00
, Types.Interior
2018-04-14 16:43:05 +00:00
, Types.ReachPoint
, Types.Direction
, Types.ImgId
, Types.FontId
, Types.StateData
, Types.Animation
2018-06-25 21:46:17 +00:00
, Types.MindMap
, 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
, Collision
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
, 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
, 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
2019-02-16 19:38:00 +00:00
, Object.ActionTime
2019-02-15 10:22:24 +00:00
, Object.Computer
, Object.Copier
2019-02-16 19:38:00 +00:00
, Object.Door
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
2020-05-04 22:48:05 +00:00
, affection == 0.0.0.10
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
, 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
2019-03-07 00:33:51 +00:00
, parallel
, split
2022-08-04 16:13:53 +00:00
, resourcet
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