63 lines
2.1 KiB
Text
63 lines
2.1 KiB
Text
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
|
|
other-modules: Types
|
|
, Types.Application
|
|
, Types.Subsystems
|
|
, Types.Map
|
|
, Types.Texture
|
|
, Types.Graphics
|
|
, Types.Graphics.VertexArray
|
|
, Types.Graphics.VertexBuffer
|
|
, Types.Graphics.IndexBuffer
|
|
, Types.Graphics.Shader
|
|
, Types.Graphics.Prop
|
|
, Types.Util
|
|
, Classes
|
|
, Classes.Scene
|
|
, Classes.Graphics
|
|
, Classes.Graphics.Bindable
|
|
, Classes.Graphics.Buffer
|
|
, Classes.Graphics.VertexLayout
|
|
, Classes.Graphics.Drawable
|
|
, Scenes.Test
|
|
, Map
|
|
, StateMachine
|
|
, Renderer
|
|
-- other-extensions:
|
|
build-depends: base >=4.13.0.0
|
|
, affection
|
|
, stm
|
|
, OpenGL
|
|
, OpenGLRaw
|
|
, sdl2
|
|
, containers
|
|
, linear
|
|
, text
|
|
, aeson
|
|
, vector
|
|
, JuicyPixels
|
|
, JuicyPixels-extra
|
|
, bytestring
|
|
, derive-storable
|
|
, monad-loops
|
|
, StateVar
|
|
hs-source-dirs: src
|
|
default-language: Haskell2010
|
|
ghc-options: -Wall -threaded
|