pioneers/Pioneers.cabal

52 lines
1.7 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-03-05 12:27:48 +00:00
other-module
2014-02-10 20:13:54 +00:00
Map.Types,
Map.Graphics,
Map.Creation,
Map.StaticMaps,
IQM.Types,
IQM.TestMain,
IQM.Parser,
Render.Misc,
Render.Render,
Render.RenderObject,
UI.Callbacks,
2014-03-05 12:27:48 +00:00
Types,
UI.SurfaceOverlay
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,
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,
attoparsec >= 0.11.2
2014-04-21 17:21:13 +00:00
other-modules: Render.Types
Default-Language: Haskell2010
2013-12-22 22:29:11 +00:00