31 lines
830 B
Plaintext
31 lines
830 B
Plaintext
name: backend
|
|
version: 0.1
|
|
cabal-version: >= 1.8
|
|
build-type: Simple
|
|
|
|
library
|
|
hs-source-dirs: src
|
|
if impl(ghcjs)
|
|
buildable: False
|
|
build-depends: base
|
|
, common
|
|
, frontend
|
|
, obelisk-backend
|
|
, obelisk-route
|
|
, tahoe-chk
|
|
exposed-modules:
|
|
Backend
|
|
ghc-options: -Wall -Wredundant-constraints -Wincomplete-uni-patterns -Wincomplete-record-updates -O -fno-show-valid-hole-fits
|
|
|
|
executable backend
|
|
main-is: main.hs
|
|
hs-source-dirs: src-bin
|
|
ghc-options: -Wall -Wredundant-constraints -Wincomplete-uni-patterns -Wincomplete-record-updates -O -threaded -fno-show-valid-hole-fits
|
|
if impl(ghcjs)
|
|
buildable: False
|
|
build-depends: base
|
|
, backend
|
|
, common
|
|
, frontend
|
|
, obelisk-backend
|