2020-08-30 15:36:32 +00:00
|
|
|
cabal-version: 2.4
|
|
|
|
-- Initial package description 'pituicat.cabal' generated by 'cabal init'.
|
|
|
|
-- For further documentation, see http://haskell.org/cabal/users-guide/
|
|
|
|
|
|
|
|
name: pituicat
|
|
|
|
version: 0.0.0.0
|
|
|
|
-- synopsis:
|
|
|
|
-- description:
|
|
|
|
-- bug-reports:
|
|
|
|
license: GPL-3.0-only
|
|
|
|
license-file: LICENSE
|
|
|
|
author: nek0
|
|
|
|
maintainer: nek0@nek0.eu
|
|
|
|
-- copyright:
|
|
|
|
category: Game
|
|
|
|
extra-source-files: CHANGELOG.md
|
|
|
|
|
|
|
|
executable pituicat
|
|
|
|
main-is: Main.hs
|
2020-09-23 23:26:47 +00:00
|
|
|
other-modules: Types
|
|
|
|
, Types.Application
|
|
|
|
, Types.Subsystems
|
2020-10-09 03:28:04 +00:00
|
|
|
, Types.GameMap
|
2020-10-12 04:08:33 +00:00
|
|
|
, Types.Texture
|
2020-10-17 14:18:42 +00:00
|
|
|
, Types.Graphics
|
|
|
|
, Types.Graphics.VertexArray
|
|
|
|
, Types.Graphics.VertexBuffer
|
2020-12-06 07:15:31 +00:00
|
|
|
, Types.Graphics.IndexBuffer
|
|
|
|
, Types.Graphics.Shader
|
2020-10-30 06:38:18 +00:00
|
|
|
, Types.Util
|
2020-10-12 04:08:33 +00:00
|
|
|
, Classes
|
2020-10-30 06:38:18 +00:00
|
|
|
, Classes.Scene
|
2020-10-17 14:18:42 +00:00
|
|
|
, Classes.Graphics
|
|
|
|
, Classes.Graphics.Bindable
|
|
|
|
, Classes.Graphics.Buffer
|
2020-12-05 09:10:37 +00:00
|
|
|
, Classes.Graphics.VertexLayout
|
2020-12-06 07:15:31 +00:00
|
|
|
-- , State.Loading
|
|
|
|
-- , State.Loading.Load
|
|
|
|
-- , State.Loading.Update
|
|
|
|
-- , State.Loading.Draw
|
|
|
|
-- , State.MainGame
|
|
|
|
-- , State.MainGame.Load
|
|
|
|
-- , State.MainGame.Update
|
|
|
|
-- , State.MainGame.Draw
|
2020-10-30 06:38:18 +00:00
|
|
|
, Scenes.Test
|
2020-10-09 23:00:33 +00:00
|
|
|
, Map
|
2020-10-16 23:53:25 +00:00
|
|
|
, StateMachine
|
2020-10-12 04:08:33 +00:00
|
|
|
, Texture
|
2020-12-06 07:15:31 +00:00
|
|
|
, Renderer
|
2020-08-30 15:36:32 +00:00
|
|
|
-- other-extensions:
|
2020-12-04 04:22:56 +00:00
|
|
|
build-depends: base >=4.13.0.0
|
2020-08-30 15:53:03 +00:00
|
|
|
, affection
|
2020-09-21 02:25:49 +00:00
|
|
|
, stm
|
2020-10-12 04:08:33 +00:00
|
|
|
, OpenGL
|
2020-10-16 23:53:25 +00:00
|
|
|
, OpenGLRaw
|
2020-09-21 02:25:49 +00:00
|
|
|
, sdl2
|
2020-09-23 23:26:47 +00:00
|
|
|
, containers
|
|
|
|
, linear
|
|
|
|
, text
|
2020-10-09 23:00:33 +00:00
|
|
|
, aeson
|
|
|
|
, vector
|
|
|
|
, JuicyPixels
|
2020-10-12 04:08:33 +00:00
|
|
|
, JuicyPixels-extra
|
2020-10-16 23:53:25 +00:00
|
|
|
, bytestring
|
2020-12-04 04:22:56 +00:00
|
|
|
, derive-storable
|
2020-12-05 09:10:37 +00:00
|
|
|
, monad-loops
|
2020-12-06 07:15:31 +00:00
|
|
|
, StateVar
|
2020-08-30 15:36:32 +00:00
|
|
|
hs-source-dirs: src
|
|
|
|
default-language: Haskell2010
|
2020-12-06 07:15:31 +00:00
|
|
|
ghc-options: -Wall -threaded
|