glance/glance.cabal

136 lines
4.4 KiB
Plaintext
Raw Normal View History

2016-01-05 04:18:42 +03:00
name: glance
version: 0.1.0.0
synopsis: Glance is a visual Haskell
description: Please see README.md
homepage: https://github.com/rgleichman/glance#readme
2020-06-14 01:55:40 +03:00
license: Apache-2.0
2016-01-05 04:18:42 +03:00
license-file: LICENSE
author: Robbie Gleichman
maintainer: rgleichman@gmail.com
copyright: 2020 Robbie Gleichman
2016-01-05 04:18:42 +03:00
category: Visual Programming
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules: Lib
build-depends: base >= 4.7 && < 5
default-language: Haskell2010
executable glance-exe
hs-source-dirs: app
main-is: Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N
2018-11-05 09:54:17 +03:00
-Wall
-Wincomplete-record-updates
-Wmissing-export-lists
-Widentities
-Wpartial-fields
2016-01-05 04:18:42 +03:00
build-depends: base
, glance
, diagrams
, diagrams-core
2016-01-05 04:18:42 +03:00
, diagrams-lib
, diagrams-svg
, diagrams-graphviz
, graphviz
2016-01-08 13:15:37 +03:00
, containers
, fgl
, haskell-src-exts
2016-02-06 08:07:06 +03:00
, mtl
, semigroups
2016-12-06 04:14:54 +03:00
, diagrams-rasterific
, text
, svg-builder
, optparse-applicative
2016-01-05 04:18:42 +03:00
default-language: Haskell2010
Other-modules: Icons
, Rendering
, Types
, Util
, Translate
, TranslateCore
, DrawingColors
, GraphAlgorithms
, SimplifySyntax
, Constants
2016-01-05 04:18:42 +03:00
-- Currently glance-gui does not build due to unknown build failure of haskell-gi-base
-- executable glance-gui
-- hs-source-dirs: gui
-- main-is: Main.hs
-- ghc-options: -threaded -rtsopts -with-rtsopts=-N
-- -Wall
-- -Wcompat
-- -Wincomplete-uni-patterns
-- -Wincomplete-record-updates
-- -Wmissing-export-lists
-- -Widentities
-- -Wpartial-fields
-- build-depends: base
-- , gi-glib
-- , gi-gtk
-- , gi-gdk
-- , gi-cairo
-- , gi-gdkpixbuf
-- , cairo
-- , haskell-gi-base
-- , gi-gio
-- , text
-- , transformers
-- , old-time
-- , containers
-- , time
-- , extra
-- default-language: Haskell2010
-- Other-modules: GtkGui
-- GuiInternals
2016-01-05 04:18:42 +03:00
test-suite glance-test
type: exitcode-stdio-1.0
2016-05-10 09:45:37 +03:00
hs-source-dirs: test, app
main-is: AllTests.hs
2016-01-05 04:18:42 +03:00
build-depends: base
, glance
2016-05-10 09:45:37 +03:00
, HUnit
, diagrams
, diagrams-core
, diagrams-lib
, diagrams-svg
, diagrams-graphviz
, graphviz
, containers
, fgl
, haskell-src-exts
, mtl
, semigroups
, text
, svg-builder
2016-01-05 04:18:42 +03:00
ghc-options: -threaded -rtsopts -with-rtsopts=-N
2018-11-05 09:54:17 +03:00
-Wall
-Wincomplete-record-updates
-Wmissing-export-lists
-Widentities
-Wpartial-fields
2016-01-05 04:18:42 +03:00
default-language: Haskell2010
2016-12-13 05:47:12 +03:00
Other-modules: Icons
, UnitTests
, VisualRenderingTests
, VisualTranslateTests
, VisualGraphAlgorithmTests
, Rendering
, Types
, Util
, Translate
, TranslateCore
, DrawingColors
, GraphAlgorithms
, SimplifySyntax
, Constants
2016-01-05 04:18:42 +03:00
source-repository head
type: git
location: https://github.com/rgleichman/glance