pioneers/Pioneers.cabal

84 lines
2.9 KiB
Plaintext
Raw Normal View History

2013-12-22 22:29:11 +00:00
name: Pioneers
version: 0.1
2014-04-14 17:48:40 +00:00
cabal-version: >= 1.16
2013-12-22 22:29:11 +00:00
build-type: Simple
author: sdressel
executable Pioneers
hs-source-dirs: src
2014-03-04 13:31:00 +00:00
if os(windows) {
ghc-options: -Wall -Odph -rtsopts -threaded -fno-liberate-case -funfolding-use-threshold1000 -funfolding-keeness-factor1000 -optlo-O3
} else {
ghc-options: -Wall -Odph -rtsopts -threaded -fno-liberate-case -funfolding-use-threshold1000 -funfolding-keeness-factor1000 -optlo-O3 -fllvm
}
2014-04-27 20:29:20 +00:00
other-modules:
Map.Map,
Map.Combinators,
2014-02-10 20:13:54 +00:00
Map.Types,
Map.Graphics,
Map.Creation,
Map.StaticMaps,
2014-04-25 19:21:19 +00:00
Importer.IQM.Types,
Importer.IQM.Parser,
Render.Misc,
Render.Render,
Render.RenderObject,
2014-04-25 19:21:19 +00:00
Render.Types,
UI.Callbacks,
Types
main-is: Main.hs
build-depends:
base >=4.6,
OpenGL >=2.9,
bytestring >=0.10,
OpenGLRaw >=1.4,
text >=0.11,
array >=0.4,
random >=1.0.1,
transformers >=0.3.0,
2014-04-26 17:58:20 +00:00
unordered-containers >= 0.2.1,
hashable >= 1.0.1.1,
mtl >=2.1.2,
2014-01-04 02:10:06 +00:00
stm >=2.4.2,
2014-01-04 15:55:59 +00:00
vector >=0.10.9 && <0.11,
distributive >=0.3.2,
linear >=1.3.1,
lens >=4.0,
SDL2 >= 0.1.0,
2014-04-09 15:42:07 +00:00
time >=1.4.0,
GLUtil >= 0.7,
2014-04-25 19:21:19 +00:00
attoparsec >= 0.11.2,
attoparsec-binary >= 0.1
Default-Language: Haskell2010
2013-12-22 22:29:11 +00:00
test-suite QuickCheckTests
type: exitcode-stdio-1.0
2014-04-28 14:34:13 +00:00
hs-source-dirs: tests/Map, src
main-is: MapTestSuite.hs
build-depends: base,
OpenGL >=2.9,
bytestring >=0.10,
OpenGLRaw >=1.4,
text >=0.11,
array >=0.4,
random >=1.0.1,
transformers >=0.3.0,
unordered-containers >= 0.2.1,
hashable >= 1.0.1.1,
mtl >=2.1.2,
stm >=2.4.2,
vector >=0.10.9 && <0.11,
distributive >=0.3.2,
linear >=1.3.1,
lens >=4.0,
SDL2 >= 0.1.0,
time >=1.4.0,
GLUtil >= 0.7,
attoparsec >= 0.11.2,
attoparsec-binary >= 0.1,
QuickCheck,
test-framework,
2014-04-28 14:34:13 +00:00
test-framework-th,
test-framework-quickcheck2
Default-Language: Haskell2010