monomer/package.yaml

97 lines
1.8 KiB
YAML
Raw Normal View History

2020-05-04 20:19:48 +03:00
name: monomer
2019-09-23 17:46:21 +03:00
version: 0.1.0.0
2020-05-04 20:19:48 +03:00
github: "fjvallarino/monomer"
2019-09-23 17:46:21 +03:00
license: BSD3
author: "Francisco Vallarino"
maintainer: "fjvallarino@gmail.com"
copyright: "2018 Francisco Vallarino"
extra-source-files:
- README.md
- ChangeLog.md
# Metadata used when publishing your package
# synopsis: GUI Library
# category: GUI
# To avoid duplicated efforts in documentation and dealing with the
# complications of embedding Haddock markup inside cabal files, it is
# common to point users to the README.md file.
2020-05-04 20:19:48 +03:00
description: Please see the README on Github at <https://github.com/fjvallarino/monomer#readme>
2019-09-23 17:46:21 +03:00
default-extensions:
- OverloadedStrings
dependencies:
- async
2020-09-14 00:37:59 +03:00
- attoparsec
2019-09-23 17:46:21 +03:00
- base >= 4.7 && < 5
- base64-bytestring
2020-08-25 06:23:36 +03:00
- bytestring
- bytestring-to-vector
2019-09-23 17:46:21 +03:00
- containers
- concurrent-extra
2019-09-23 17:46:21 +03:00
- data-default
- extra
- formatting
- lens
2020-08-24 08:11:37 +03:00
- JuicyPixels
2019-09-23 17:46:21 +03:00
- mtl
- nanovg
- OpenGL
- sdl2
2020-06-08 21:25:52 +03:00
- stm
2019-09-23 17:46:21 +03:00
- text
2020-06-04 23:36:01 +03:00
- text-show
2020-08-24 08:11:37 +03:00
- transformers
2019-09-23 17:46:21 +03:00
- unordered-containers
- vector
2020-10-01 05:27:36 +03:00
- wreq
2019-09-23 17:46:21 +03:00
library:
source-dirs: src
c-sources:
- cbits/glew.c
cc-options:
- -fPIC
ghc-options:
- -fwarn-incomplete-patterns
- -O0
extra-libraries:
- GLEW
executables:
2020-05-04 20:19:48 +03:00
monomer-exe:
2019-09-23 17:46:21 +03:00
main: Main.hs
source-dirs: app
ghc-options:
- -fwarn-incomplete-patterns
- -threaded
- -rtsopts
- -with-rtsopts=-N
- -with-rtsopts=-T
- -O0
dependencies:
2020-06-08 21:25:52 +03:00
- ekg
- lens
2020-05-04 20:19:48 +03:00
- monomer
2019-09-23 17:46:21 +03:00
tests:
2020-05-04 20:19:48 +03:00
monomer-test:
2019-09-23 17:46:21 +03:00
main: Spec.hs
source-dirs: test/unit
ghc-options:
- -fwarn-incomplete-patterns
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- call-stack
2020-05-04 20:19:48 +03:00
- monomer
2019-09-23 17:46:21 +03:00
- hedgehog
- hedgehog-classes
- hspec
- HUnit
- silently