chk-test/backend/backend.cabal

31 lines
830 B
Plaintext
Raw Permalink Normal View History

2023-02-07 18:16:26 +00:00
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
2023-02-08 17:25:07 +00:00
, tahoe-chk
2023-02-07 18:16:26 +00:00
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