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
|
2018-02-17 02:36:06 +01:00
|
|
|
, Types.Map
|
2018-03-03 17:03:17 +01:00
|
|
|
, Types.Interior
|
2018-04-14 18:43:05 +02:00
|
|
|
, Types.ReachPoint
|
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
|
2018-02-17 02:36:06 +01:00
|
|
|
, Test
|
2018-04-02 16:29:35 +02:00
|
|
|
, Navigation
|
2018-04-14 11:18:37 +02:00
|
|
|
, NPC
|
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
|
2018-02-07 01:18:16 +01:00
|
|
|
, affection == 0.0.0.9
|
|
|
|
, sdl2
|
|
|
|
, 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-02-14 00:54:40 +01:00
|
|
|
, matrix
|
|
|
|
, random
|
2018-02-15 19:42:07 +01:00
|
|
|
, vector
|
2018-04-02 16:29:35 +02:00
|
|
|
, astar
|
|
|
|
, unordered-containers
|
2018-05-21 00:40:40 +02:00
|
|
|
, JuicyPixels
|
|
|
|
, JuicyPixels-extra
|
|
|
|
, bytestring
|
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
|