2016-03-25 08:41:22 +00:00
|
|
|
name: affection
|
|
|
|
|
|
|
|
-- The package version. See the Haskell package versioning policy (PVP)
|
|
|
|
-- for standards guiding when and how versions should be incremented.
|
|
|
|
-- http://www.haskell.org/haskellwiki/Package_versioning_policy
|
|
|
|
-- PVP summary: +-+------- breaking API changes
|
|
|
|
-- | | +----- non-breaking API additions
|
|
|
|
-- | | | +--- code changes with no API change
|
2017-12-27 17:43:13 +00:00
|
|
|
version: 0.0.0.8
|
2016-03-25 08:41:22 +00:00
|
|
|
synopsis: A simple Game Engine using SDL
|
2017-02-17 16:15:06 +00:00
|
|
|
description: This package contains Affection, a simple game engine
|
2017-12-23 23:39:52 +00:00
|
|
|
written in Haskell using SDL.
|
2017-02-17 16:15:06 +00:00
|
|
|
This Engine is still work in progress and even minor
|
|
|
|
version bumps may contain breaking api changes.
|
2016-03-25 08:41:22 +00:00
|
|
|
homepage: https://github.com/nek0/affection#readme
|
|
|
|
license: LGPL-3
|
|
|
|
license-file: LICENSE
|
|
|
|
author: nek0
|
|
|
|
maintainer: nek0@chelnok.de
|
|
|
|
category: Game
|
|
|
|
build-type: Simple
|
2017-12-23 23:39:52 +00:00
|
|
|
extra-source-files: ChangeLog.md
|
2016-03-25 08:41:22 +00:00
|
|
|
|
|
|
|
-- Extra files to be distributed with the package, such as examples or a
|
|
|
|
-- README.
|
|
|
|
-- extra-source-files:
|
|
|
|
|
|
|
|
cabal-version: >=1.10
|
|
|
|
|
2016-05-29 16:01:23 +00:00
|
|
|
source-repository head
|
|
|
|
type: git
|
|
|
|
location: https://github.com/nek0/affection
|
|
|
|
|
2017-12-22 05:30:24 +00:00
|
|
|
flag verbose
|
2017-12-22 05:28:58 +00:00
|
|
|
description: Enable verbose debug messages
|
|
|
|
default: False
|
|
|
|
manual: True
|
|
|
|
|
2017-12-12 12:10:00 +00:00
|
|
|
flag debug
|
|
|
|
description: Enable debug messages
|
|
|
|
default: False
|
|
|
|
manual: True
|
|
|
|
|
|
|
|
flag warn
|
|
|
|
description: Enable warning messages
|
|
|
|
default: False
|
|
|
|
manual: True
|
|
|
|
|
|
|
|
flag error
|
|
|
|
description: Enable error messages
|
|
|
|
default: False
|
|
|
|
manual: True
|
|
|
|
|
2016-05-29 16:01:23 +00:00
|
|
|
flag examples
|
|
|
|
description: Build example programs
|
|
|
|
default: False
|
2016-03-25 08:41:22 +00:00
|
|
|
|
|
|
|
library
|
2017-12-22 05:28:58 +00:00
|
|
|
if flag(verbose)
|
|
|
|
cpp-options: -DVERBOSE
|
2017-12-12 12:10:00 +00:00
|
|
|
if flag(debug)
|
|
|
|
cpp-options: -DDEBUG
|
|
|
|
if flag(warn)
|
|
|
|
cpp-options: -DWARN
|
|
|
|
if flag(error)
|
|
|
|
cpp-options: -DERROR
|
2016-03-25 08:41:22 +00:00
|
|
|
exposed-modules: Affection
|
2017-12-12 12:10:00 +00:00
|
|
|
, Affection.Logging
|
2016-03-26 02:50:39 +00:00
|
|
|
, Affection.Types
|
2017-03-05 15:39:37 +00:00
|
|
|
, Affection.StateMachine
|
|
|
|
, Affection.MouseInteractable
|
2017-09-07 04:23:01 +00:00
|
|
|
, Affection.Util
|
2017-11-27 04:27:52 +00:00
|
|
|
, Affection.MessageBus
|
2017-11-26 19:25:06 +00:00
|
|
|
, Affection.MessageBus.Util
|
|
|
|
, Affection.MessageBus.Class
|
|
|
|
, Affection.MessageBus.Message
|
2017-11-29 16:49:56 +00:00
|
|
|
, Affection.MessageBus.Message.Class
|
|
|
|
, Affection.MessageBus.Message.WindowMessage
|
2017-12-12 12:10:55 +00:00
|
|
|
, Affection.MessageBus.Message.KeyboardMessage
|
2017-12-13 03:37:16 +00:00
|
|
|
, Affection.MessageBus.Message.MouseMessage
|
2017-12-13 14:19:53 +00:00
|
|
|
, Affection.Subsystems
|
2017-11-27 22:30:11 +00:00
|
|
|
, Affection.Subsystems.Class
|
|
|
|
, Affection.Subsystems.AffectionWindow
|
2017-12-12 12:10:55 +00:00
|
|
|
, Affection.Subsystems.AffectionKeyboard
|
2017-12-13 03:37:16 +00:00
|
|
|
, Affection.Subsystems.AffectionMouse
|
2016-03-26 02:50:39 +00:00
|
|
|
default-extensions: OverloadedStrings
|
|
|
|
|
2016-03-25 08:41:22 +00:00
|
|
|
-- Modules included in this library but not exported.
|
|
|
|
-- other-modules:
|
|
|
|
|
|
|
|
-- LANGUAGE extensions used by modules in this package.
|
2016-03-26 02:50:39 +00:00
|
|
|
other-extensions: GADTs
|
|
|
|
, KindSignatures
|
|
|
|
, FlexibleInstances
|
|
|
|
, MultiParamTypeClasses
|
|
|
|
, UndecidableInstances
|
2016-03-25 08:41:22 +00:00
|
|
|
hs-source-dirs: src
|
|
|
|
default-language: Haskell2010
|
2017-02-17 16:15:06 +00:00
|
|
|
ghc-options: -Wall
|
2016-03-25 08:41:22 +00:00
|
|
|
-- Other library packages from which modules are imported.
|
2017-12-23 23:39:52 +00:00
|
|
|
build-depends: base >=4.9 && < 5
|
2016-03-25 08:41:22 +00:00
|
|
|
, sdl2
|
2017-11-27 04:27:52 +00:00
|
|
|
, linear
|
2016-03-25 10:43:31 +00:00
|
|
|
, text
|
2016-03-26 02:50:39 +00:00
|
|
|
, mtl
|
2016-10-31 22:47:16 +00:00
|
|
|
, monad-loops
|
2017-03-20 04:24:02 +00:00
|
|
|
, monad-parallel
|
2016-12-23 13:18:39 +00:00
|
|
|
, containers
|
2016-11-02 00:14:53 +00:00
|
|
|
, clock
|
2016-12-23 13:18:39 +00:00
|
|
|
, glib
|
2017-03-22 15:59:24 +00:00
|
|
|
, bytestring
|
2017-09-09 14:47:24 +00:00
|
|
|
, OpenGL
|
2017-11-26 12:59:59 +00:00
|
|
|
, stm
|
2017-12-13 03:37:16 +00:00
|
|
|
, uuid
|
2016-03-25 08:41:22 +00:00
|
|
|
|
2017-12-23 23:39:52 +00:00
|
|
|
-- This example shows the message system. only makes sense when compiling with
|
|
|
|
-- verbose flag.
|
2017-12-13 14:19:53 +00:00
|
|
|
executable example00
|
|
|
|
hs-source-dirs: examples
|
|
|
|
main-is: example00.hs
|
|
|
|
ghc-options: -threaded -Wall
|
|
|
|
default-language: Haskell2010
|
|
|
|
default-extensions: OverloadedStrings
|
|
|
|
if flag(examples)
|
2017-12-23 23:39:52 +00:00
|
|
|
build-depends: base >=4.9 && < 5
|
2017-12-13 14:19:53 +00:00
|
|
|
, affection
|
|
|
|
, sdl2
|
|
|
|
, stm
|
|
|
|
else
|
|
|
|
buildable: False
|
|
|
|
|
|
|
|
-- executable example01
|
2017-03-23 03:25:59 +00:00
|
|
|
-- hs-source-dirs: examples
|
2017-12-13 14:19:53 +00:00
|
|
|
-- main-is: example01.hs
|
2017-03-23 03:25:59 +00:00
|
|
|
-- ghc-options: -threaded -Wall
|
|
|
|
-- default-language: Haskell2010
|
|
|
|
-- default-extensions: OverloadedStrings
|
|
|
|
-- if flag(examples)
|
|
|
|
-- build-depends: base
|
|
|
|
-- , affection
|
|
|
|
-- , sdl2
|
|
|
|
-- , gegl
|
|
|
|
-- , babl
|
|
|
|
-- , containers
|
|
|
|
-- , mtl
|
|
|
|
-- else
|
|
|
|
-- buildable: False
|
2017-05-20 08:24:05 +00:00
|
|
|
--
|
2017-12-13 14:19:53 +00:00
|
|
|
-- executable example02
|
2017-05-20 08:24:05 +00:00
|
|
|
-- hs-source-dirs: examples
|
2017-12-13 14:19:53 +00:00
|
|
|
-- main-is: example02.hs
|
2017-05-20 08:24:05 +00:00
|
|
|
-- ghc-options: -threaded -Wall
|
|
|
|
-- default-language: Haskell2010
|
|
|
|
-- default-extensions: OverloadedStrings
|
|
|
|
-- if flag(examples)
|
|
|
|
-- build-depends: base
|
|
|
|
-- , affection
|
|
|
|
-- , sdl2
|
|
|
|
-- , gegl
|
|
|
|
-- , babl
|
|
|
|
-- , containers
|
|
|
|
-- , mtl
|
2017-12-13 14:19:53 +00:00
|
|
|
-- , monad-parallel
|
2017-05-20 08:24:05 +00:00
|
|
|
-- else
|
|
|
|
-- buildable: False
|
|
|
|
--
|
2017-12-13 14:19:53 +00:00
|
|
|
-- executable example02.1
|
2017-05-20 08:24:05 +00:00
|
|
|
-- hs-source-dirs: examples
|
2017-12-13 14:19:53 +00:00
|
|
|
-- main-is: example02.1.hs
|
2017-05-20 08:24:05 +00:00
|
|
|
-- ghc-options: -threaded -Wall
|
|
|
|
-- default-language: Haskell2010
|
|
|
|
-- default-extensions: OverloadedStrings
|
|
|
|
-- if flag(examples)
|
|
|
|
-- build-depends: base
|
|
|
|
-- , affection
|
|
|
|
-- , sdl2
|
|
|
|
-- , gegl
|
|
|
|
-- , babl
|
|
|
|
-- , containers
|
|
|
|
-- , mtl
|
|
|
|
-- else
|
|
|
|
-- buildable: False
|
|
|
|
--
|
2017-12-13 14:19:53 +00:00
|
|
|
-- executable example03
|
2017-05-20 08:24:05 +00:00
|
|
|
-- hs-source-dirs: examples
|
2017-12-13 14:19:53 +00:00
|
|
|
-- main-is: example03.hs
|
|
|
|
-- ghc-options: -threaded -Wall -auto-all -caf-all -rtsopts
|
2017-05-20 08:24:05 +00:00
|
|
|
-- default-language: Haskell2010
|
|
|
|
-- default-extensions: OverloadedStrings
|
|
|
|
-- if flag(examples)
|
|
|
|
-- build-depends: base
|
|
|
|
-- , affection
|
|
|
|
-- , sdl2
|
|
|
|
-- , gegl
|
|
|
|
-- , babl
|
|
|
|
-- , containers
|
|
|
|
-- , mtl
|
2017-12-13 14:19:53 +00:00
|
|
|
-- , random
|
2017-05-20 08:24:05 +00:00
|
|
|
-- else
|
|
|
|
-- buildable: False
|
|
|
|
--
|
2017-12-13 14:19:53 +00:00
|
|
|
-- executable example04
|
2017-05-20 08:24:05 +00:00
|
|
|
-- hs-source-dirs: examples
|
2017-12-13 14:19:53 +00:00
|
|
|
-- main-is: example04.hs
|
2017-05-20 08:24:05 +00:00
|
|
|
-- ghc-options: -threaded -Wall -auto-all -caf-all -rtsopts
|
|
|
|
-- default-language: Haskell2010
|
|
|
|
-- default-extensions: OverloadedStrings
|
|
|
|
-- if flag(examples)
|
|
|
|
-- build-depends: base
|
|
|
|
-- , affection
|
|
|
|
-- , sdl2
|
|
|
|
-- , gegl
|
|
|
|
-- , babl
|
|
|
|
-- , containers
|
|
|
|
-- , mtl
|
|
|
|
-- , random
|
2017-12-13 14:19:53 +00:00
|
|
|
-- , monad-parallel
|
2017-05-20 08:24:05 +00:00
|
|
|
-- else
|
|
|
|
-- buildable: False
|
|
|
|
--
|
2017-12-13 14:19:53 +00:00
|
|
|
-- executable example05
|
2017-05-20 08:24:05 +00:00
|
|
|
-- hs-source-dirs: examples
|
2017-12-13 14:19:53 +00:00
|
|
|
-- main-is: example05.hs
|
2017-05-20 08:24:05 +00:00
|
|
|
-- ghc-options: -threaded -Wall -auto-all -caf-all -rtsopts
|
|
|
|
-- default-language: Haskell2010
|
|
|
|
-- default-extensions: OverloadedStrings
|
|
|
|
-- if flag(examples)
|
|
|
|
-- build-depends: base
|
|
|
|
-- , affection
|
|
|
|
-- , sdl2
|
|
|
|
-- , gegl
|
|
|
|
-- , babl
|
|
|
|
-- , containers
|
2017-12-13 14:19:53 +00:00
|
|
|
-- , unordered-containers
|
2017-05-20 08:24:05 +00:00
|
|
|
-- , mtl
|
|
|
|
-- , random
|
2017-12-13 14:19:53 +00:00
|
|
|
-- , matrix
|
|
|
|
-- , random
|
2017-05-20 08:24:05 +00:00
|
|
|
-- , monad-parallel
|
2017-12-13 14:19:53 +00:00
|
|
|
-- , parallel
|
2017-05-20 08:24:05 +00:00
|
|
|
-- else
|
|
|
|
-- buildable: False
|