Skip to content

Instantly share code, notes, and snippets.

@cschneid
Created February 23, 2015 18:03
Show Gist options
  • Select an option

  • Save cschneid/161a2349d332210a3105 to your computer and use it in GitHub Desktop.

Select an option

Save cschneid/161a2349d332210a3105 to your computer and use it in GitHub Desktop.
-- Initial strawpollhs.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: strawpollhs
version: 0.1.0.0
license-file: LICENSE
author: Chris Schneider
maintainer: chris@christopher-schneider.com
build-type: Simple
cabal-version: >=1.10
executable server
main-is: Main.hs
build-depends: base >=4.7 && <4.8,
strawpollhs
hs-source-dirs: src/server
default-language: Haskell2010
executable client
main-is: Main.hs
build-depends: base >=4.7 && <4.8,
strawpollhs
hs-source-dirs: src/client
default-language: Haskell2010
library
exposed-modules: StrawPoll.Types
build-depends: base >=4.7 && <4.8
hs-source-dirs: src/shared
default-language: Haskell2010
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment