packages feed

piyo-0.1.0.0: piyo.cabal

-- This file has been generated from package.yaml by hpack version 0.28.2.
--
-- see: https://github.com/sol/hpack
--
-- hash: c20a5643221412b3bb584ecb66fd486d4cf830267ee205edec582cdab993a592

name:           piyo
version:        0.1.0.0
synopsis:       Haskell game engine like fantasy console.
description:    Please see the README on GitHub at <https://github.com/opyapeus/piyo#readme>
category:       Game
homepage:       https://github.com/opyapeus/piyo#readme
bug-reports:    https://github.com/opyapeus/piyo/issues
author:         peus
maintainer:     opyapeus@gmail.com
copyright:      2018 peus
license:        MIT
license-file:   LICENSE
build-type:     Simple
cabal-version:  >= 1.10
extra-source-files:
    ChangeLog.md
    README.md
data-files:
    fonts/JF-Dot-K12.ttf
    fonts/JF-Dot-K12B.ttf
data-dir:       assets

source-repository head
  type: git
  location: https://github.com/opyapeus/piyo

library
  exposed-modules:
      Piyo
      Piyo.Game
      Piyo.Asset
      Piyo.Types
      Piyo.Draw
      Piyo.Sound
  other-modules:
      Piyo.Internal.Common
      Piyo.Internal.Config
      Piyo.Internal.Constants
      Piyo.Internal.InputState
      Piyo.Internal.Types
      Paths_piyo
  hs-source-dirs:
      src
  build-depends:
      base >=4.7 && <5
    , extra
    , sdl2
    , sdl2-gfx
    , sdl2-image
    , sdl2-mixer
    , sdl2-ttf
    , text
  default-language: Haskell2010

executable piyo-exe
  main-is: Main.hs
  other-modules:
      Paths_piyo
  hs-source-dirs:
      app
  ghc-options: -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      base >=4.7 && <5
    , extra
    , piyo
    , sdl2
    , sdl2-gfx
    , sdl2-image
    , sdl2-mixer
    , sdl2-ttf
    , text
  default-language: Haskell2010

test-suite piyo-test
  type: exitcode-stdio-1.0
  main-is: Spec.hs
  other-modules:
      Paths_piyo
  hs-source-dirs:
      test
  ghc-options: -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      base >=4.7 && <5
    , extra
    , piyo
    , sdl2
    , sdl2-gfx
    , sdl2-image
    , sdl2-mixer
    , sdl2-ttf
    , text
  default-language: Haskell2010