tracer/tracer-game.cabal

87 lines
2.8 KiB
Plaintext
Raw Permalink Normal View History

2018-02-07 01:18:16 +01: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 17:03:17 +01:00
, Types.Interior
2018-04-14 18:43:05 +02:00
, Types.ReachPoint
, Types.Direction
, Types.ImgId
, Types.FontId
, Types.StateData
, Types.Animation
2018-06-25 23:46:17 +02:00
, Types.MindMap
, Types.Drawable
, Types.Collidible
2018-07-22 22:31:23 +02:00
, Types.ObjType
2018-08-10 08:58:26 +02:00
, Types.ObjClass
, Types.Entity
, Types.NPCState
2018-07-30 14:34:46 +02:00
, Animation
, Collision
2018-02-07 01:18:16 +01:00
, StateMachine
2018-02-14 00:54:40 +01:00
, Floorplan
2018-03-03 17:03:17 +01:00
, Interior
2018-02-07 01:18:16 +01:00
, Init
, Load
2018-10-12 14:26:06 +02:00
, Menu.Connect
2018-10-12 21:40:16 +02:00
, Menu.Adjust
2018-06-28 21:07:58 +02:00
, MainGame.WorldMap
, MainGame.MindMap
, Navigation
2018-06-25 23:46:17 +02:00
, MindMap
2018-04-14 11:18:37 +02:00
, NPC
2018-07-22 22:31:23 +02:00
, Object
2019-02-16 20:38:00 +01:00
, Object.ActionTime
2019-02-15 11:22:24 +01:00
, Object.Computer
, Object.Copier
2019-02-16 20:38:00 +01:00
, Object.Door
2018-03-02 02:10:35 +01:00
, Util
2018-02-07 01:18:16 +01:00
default-extensions: OverloadedStrings
, DeriveGeneric
, DataKinds
-- other-extensions:
2018-05-18 20:04:47 +02:00
build-depends: base >=4.10 && <5
2020-05-05 00:48:05 +02:00
, affection == 0.0.0.10
2018-07-19 04:51:07 +02:00
, sdl2 >= 2.4.0.0
2018-02-07 01:18:16 +01:00
, OpenGL
2018-06-03 04:25:19 +02:00
, nanovg >= 0.6.0.0
2018-02-07 01:18:16 +01:00
, stm
, text
, containers
2018-05-17 13:06:13 +02:00
, ecstasy >= 0.2.1.0
2018-02-07 01:18:16 +01:00
, linear
2018-07-19 04:51:07 +02:00
, matrix >= 0.3.6.0
2018-02-14 00:54:40 +01:00
, random
2018-02-15 19:42:07 +01:00
, vector
, astar
, unordered-containers
2018-05-21 00:40:40 +02:00
, JuicyPixels
, JuicyPixels-extra
, bytestring
2018-06-24 00:41:51 +02:00
, algebraic-graphs
2018-08-10 08:58:26 +02:00
, mtl
2019-03-07 01:33:51 +01:00
, parallel
, split
2022-08-04 18:13:53 +02:00
, resourcet
2018-02-07 01:18:16 +01:00
hs-source-dirs: src
2018-03-04 22:24:57 +01:00
ghc-options: -Wall -threaded
2018-02-07 01:18:16 +01:00
default-language: Haskell2010