gameServer/hedgewars-server.cabal
author nemo
Fri, 05 Nov 2010 18:56:12 -0400
changeset 4140 1563b216f243
parent 3671 a94d1dc4a8d9
child 4597 31e042ab870c
permissions -rw-r--r--
revert attempts to block switching weapon while targetting in infinite attack mode. just getting too messy. probably best to allow any weapon to be targetted, and store the target in the gear and draw it there instead of uworld, but I'm leaving this alone
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3671
a94d1dc4a8d9 - burp's patch cleaning up module dependancies + cabal file
unc0rr
parents:
diff changeset
     1
Name:                hedgewars-server
a94d1dc4a8d9 - burp's patch cleaning up module dependancies + cabal file
unc0rr
parents:
diff changeset
     2
Version:             0.1
a94d1dc4a8d9 - burp's patch cleaning up module dependancies + cabal file
unc0rr
parents:
diff changeset
     3
Synopsis:            hedgewars server
a94d1dc4a8d9 - burp's patch cleaning up module dependancies + cabal file
unc0rr
parents:
diff changeset
     4
Description:         hedgewars server
a94d1dc4a8d9 - burp's patch cleaning up module dependancies + cabal file
unc0rr
parents:
diff changeset
     5
Homepage:            http://www.hedgewars.org/
a94d1dc4a8d9 - burp's patch cleaning up module dependancies + cabal file
unc0rr
parents:
diff changeset
     6
License:             GPL-2
a94d1dc4a8d9 - burp's patch cleaning up module dependancies + cabal file
unc0rr
parents:
diff changeset
     7
Author:              unC0Rr
a94d1dc4a8d9 - burp's patch cleaning up module dependancies + cabal file
unc0rr
parents:
diff changeset
     8
Maintainer:          unC0Rr@hedgewars.org
a94d1dc4a8d9 - burp's patch cleaning up module dependancies + cabal file
unc0rr
parents:
diff changeset
     9
Category:            Game
a94d1dc4a8d9 - burp's patch cleaning up module dependancies + cabal file
unc0rr
parents:
diff changeset
    10
Build-type:          Simple
a94d1dc4a8d9 - burp's patch cleaning up module dependancies + cabal file
unc0rr
parents:
diff changeset
    11
Cabal-version:       >=1.2
a94d1dc4a8d9 - burp's patch cleaning up module dependancies + cabal file
unc0rr
parents:
diff changeset
    12
a94d1dc4a8d9 - burp's patch cleaning up module dependancies + cabal file
unc0rr
parents:
diff changeset
    13
a94d1dc4a8d9 - burp's patch cleaning up module dependancies + cabal file
unc0rr
parents:
diff changeset
    14
Executable hedgewars-server
a94d1dc4a8d9 - burp's patch cleaning up module dependancies + cabal file
unc0rr
parents:
diff changeset
    15
  main-is: hedgewars-server.hs
a94d1dc4a8d9 - burp's patch cleaning up module dependancies + cabal file
unc0rr
parents:
diff changeset
    16
a94d1dc4a8d9 - burp's patch cleaning up module dependancies + cabal file
unc0rr
parents:
diff changeset
    17
  Build-depends:
a94d1dc4a8d9 - burp's patch cleaning up module dependancies + cabal file
unc0rr
parents:
diff changeset
    18
    base >= 4,
a94d1dc4a8d9 - burp's patch cleaning up module dependancies + cabal file
unc0rr
parents:
diff changeset
    19
    unix,
a94d1dc4a8d9 - burp's patch cleaning up module dependancies + cabal file
unc0rr
parents:
diff changeset
    20
    containers,
a94d1dc4a8d9 - burp's patch cleaning up module dependancies + cabal file
unc0rr
parents:
diff changeset
    21
    array,
a94d1dc4a8d9 - burp's patch cleaning up module dependancies + cabal file
unc0rr
parents:
diff changeset
    22
    bytestring,
a94d1dc4a8d9 - burp's patch cleaning up module dependancies + cabal file
unc0rr
parents:
diff changeset
    23
    network-bytestring,
a94d1dc4a8d9 - burp's patch cleaning up module dependancies + cabal file
unc0rr
parents:
diff changeset
    24
    network,
a94d1dc4a8d9 - burp's patch cleaning up module dependancies + cabal file
unc0rr
parents:
diff changeset
    25
    time,
a94d1dc4a8d9 - burp's patch cleaning up module dependancies + cabal file
unc0rr
parents:
diff changeset
    26
    stm,
a94d1dc4a8d9 - burp's patch cleaning up module dependancies + cabal file
unc0rr
parents:
diff changeset
    27
    mtl,
a94d1dc4a8d9 - burp's patch cleaning up module dependancies + cabal file
unc0rr
parents:
diff changeset
    28
    dataenc,
a94d1dc4a8d9 - burp's patch cleaning up module dependancies + cabal file
unc0rr
parents:
diff changeset
    29
    hslogger,
a94d1dc4a8d9 - burp's patch cleaning up module dependancies + cabal file
unc0rr
parents:
diff changeset
    30
    process
a94d1dc4a8d9 - burp's patch cleaning up module dependancies + cabal file
unc0rr
parents:
diff changeset
    31
  
a94d1dc4a8d9 - burp's patch cleaning up module dependancies + cabal file
unc0rr
parents:
diff changeset
    32
  ghc-options: -O2