tracer/tracer-game.cabal

55 lines
1.7 KiB
Plaintext
Raw 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
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
, Test
, Navigation
2018-04-14 09:18:37 +00:00
, NPC
2018-03-02 01:10:35 +00:00
, Util
2018-02-07 00:18:16 +00:00
default-extensions: OverloadedStrings
, DeriveGeneric
, DataKinds
-- other-extensions:
build-depends: base >=4.10 && <4.11
, affection == 0.0.0.9
, sdl2
, OpenGL
, nanovg
, stm
, text
, containers
, ecstasy
, linear
2018-02-13 23:54:40 +00:00
, matrix
, random
2018-02-15 18:42:07 +00:00
, vector
, astar
, unordered-containers
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